From 4f47475dd4cd9ce10346bff285595e1ce441d2fb Mon Sep 17 00:00:00 2001 From: strongleong Date: Thu, 20 Jan 2022 00:06:54 +1100 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D1=8C=D1=82?= =?UTF-8?q?=D0=B5=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20=D0=BF=D1=80=D0=BE?= =?UTF-8?q?=D0=B5=D0=BA=D1=82=D0=B0.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ScrapModLoader.sln | 25 +++++++++++++++++++++++++ ScrapModLoader/App.xaml | 9 +++++++++ ScrapModLoader/App.xaml.cs | 15 +++++++++++++++ ScrapModLoader/AssemblyInfo.cs | 10 ++++++++++ ScrapModLoader/MainWindow.xaml | 12 ++++++++++++ ScrapModLoader/MainWindow.xaml.cs | 25 +++++++++++++++++++++++++ ScrapModLoader/ScrapModLoader.csproj | 11 +++++++++++ 7 files changed, 107 insertions(+) create mode 100644 ScrapModLoader.sln create mode 100644 ScrapModLoader/App.xaml create mode 100644 ScrapModLoader/App.xaml.cs create mode 100644 ScrapModLoader/AssemblyInfo.cs create mode 100644 ScrapModLoader/MainWindow.xaml create mode 100644 ScrapModLoader/MainWindow.xaml.cs create mode 100644 ScrapModLoader/ScrapModLoader.csproj 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 + + +