diff --git a/ScrapModLoader.sln b/ScrapModLoader.sln new file mode 100644 index 0000000..0258215 --- /dev/null +++ b/ScrapModLoader.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.32014.148 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScrapModLoader", "ScrapModLoader\ScrapModLoader.csproj", "{11B9B565-DE2D-44EE-ACE8-6A8904A41E9F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {11B9B565-DE2D-44EE-ACE8-6A8904A41E9F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {11B9B565-DE2D-44EE-ACE8-6A8904A41E9F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {11B9B565-DE2D-44EE-ACE8-6A8904A41E9F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {11B9B565-DE2D-44EE-ACE8-6A8904A41E9F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {FE349824-7DAC-4F86-AD2A-7513C958F71A} + EndGlobalSection +EndGlobal diff --git a/ScrapModLoader/App.xaml b/ScrapModLoader/App.xaml new file mode 100644 index 0000000..75070c4 --- /dev/null +++ b/ScrapModLoader/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/ScrapModLoader/App.xaml.cs b/ScrapModLoader/App.xaml.cs new file mode 100644 index 0000000..670614c --- /dev/null +++ b/ScrapModLoader/App.xaml.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace ScrapModLoader { + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application { + } +} diff --git a/ScrapModLoader/AssemblyInfo.cs b/ScrapModLoader/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/ScrapModLoader/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/ScrapModLoader/MainWindow.xaml b/ScrapModLoader/MainWindow.xaml new file mode 100644 index 0000000..f7ded13 --- /dev/null +++ b/ScrapModLoader/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/ScrapModLoader/MainWindow.xaml.cs b/ScrapModLoader/MainWindow.xaml.cs new file mode 100644 index 0000000..82d68a5 --- /dev/null +++ b/ScrapModLoader/MainWindow.xaml.cs @@ -0,0 +1,25 @@ +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 ScrapModLoader { + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window { + public MainWindow() { + InitializeComponent(); + } + } +} diff --git a/ScrapModLoader/ScrapModLoader.csproj b/ScrapModLoader/ScrapModLoader.csproj new file mode 100644 index 0000000..c0bf46c --- /dev/null +++ b/ScrapModLoader/ScrapModLoader.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net6.0-windows10.0.22000.0 + enable + true + 7.0 + + +