diff --git a/Installer/Dexif_Installer/App.xaml b/Installer/Dexif_Installer/App.xaml new file mode 100644 index 0000000..f5d133e --- /dev/null +++ b/Installer/Dexif_Installer/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Installer/Dexif_Installer/App.xaml.cs b/Installer/Dexif_Installer/App.xaml.cs new file mode 100644 index 0000000..facb7ea --- /dev/null +++ b/Installer/Dexif_Installer/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace Dexif_Installer +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/Installer/Dexif_Installer/AssemblyInfo.cs b/Installer/Dexif_Installer/AssemblyInfo.cs new file mode 100644 index 0000000..74087a1 --- /dev/null +++ b/Installer/Dexif_Installer/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/Installer/Dexif_Installer/Dexif_Installer.csproj b/Installer/Dexif_Installer/Dexif_Installer.csproj new file mode 100644 index 0000000..7dc11f9 --- /dev/null +++ b/Installer/Dexif_Installer/Dexif_Installer.csproj @@ -0,0 +1,10 @@ + + + + WinExe + net6.0-windows + enable + true + + + diff --git a/Installer/Dexif_Installer/Dexif_Installer.sln b/Installer/Dexif_Installer/Dexif_Installer.sln new file mode 100644 index 0000000..22ef700 --- /dev/null +++ b/Installer/Dexif_Installer/Dexif_Installer.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.6.33815.320 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dexif_Installer", "Dexif_Installer.csproj", "{4CFCBD38-F3B1-4AA3-8085-A169DA90B1E5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4CFCBD38-F3B1-4AA3-8085-A169DA90B1E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4CFCBD38-F3B1-4AA3-8085-A169DA90B1E5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4CFCBD38-F3B1-4AA3-8085-A169DA90B1E5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4CFCBD38-F3B1-4AA3-8085-A169DA90B1E5}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {4B46E810-3D7D-40E0-B7F4-555CD8C36283} + EndGlobalSection +EndGlobal diff --git a/Installer/Dexif_Installer/MainWindow.xaml b/Installer/Dexif_Installer/MainWindow.xaml new file mode 100644 index 0000000..9108696 --- /dev/null +++ b/Installer/Dexif_Installer/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/Installer/Dexif_Installer/MainWindow.xaml.cs b/Installer/Dexif_Installer/MainWindow.xaml.cs new file mode 100644 index 0000000..0ecf0f3 --- /dev/null +++ b/Installer/Dexif_Installer/MainWindow.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace Dexif_Installer +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +}