From 8428f6aced4c27056cde38014e6812c500364e25 Mon Sep 17 00:00:00 2001 From: Nick Lay Date: Wed, 3 Mar 2021 01:10:21 -0500 Subject: [PATCH] Add project files. --- HWSTC-patcher.sln | 25 +++ HWSTC-patcher/App.config | 18 ++ HWSTC-patcher/App.xaml | 9 + HWSTC-patcher/App.xaml.cs | 17 ++ HWSTC-patcher/HWSTC-patcher.csproj | 103 +++++++++ HWSTC-patcher/MainWindow.xaml | 22 ++ HWSTC-patcher/MainWindow.xaml.cs | 200 ++++++++++++++++++ HWSTC-patcher/Properties/AssemblyInfo.cs | 55 +++++ .../Properties/Resources.Designer.cs | 70 ++++++ HWSTC-patcher/Properties/Resources.resx | 117 ++++++++++ HWSTC-patcher/Properties/Settings.Designer.cs | 38 ++++ HWSTC-patcher/Properties/Settings.settings | 9 + HWSTC-patcher/app.manifest | 76 +++++++ 13 files changed, 759 insertions(+) create mode 100644 HWSTC-patcher.sln create mode 100644 HWSTC-patcher/App.config create mode 100644 HWSTC-patcher/App.xaml create mode 100644 HWSTC-patcher/App.xaml.cs create mode 100644 HWSTC-patcher/HWSTC-patcher.csproj create mode 100644 HWSTC-patcher/MainWindow.xaml create mode 100644 HWSTC-patcher/MainWindow.xaml.cs create mode 100644 HWSTC-patcher/Properties/AssemblyInfo.cs create mode 100644 HWSTC-patcher/Properties/Resources.Designer.cs create mode 100644 HWSTC-patcher/Properties/Resources.resx create mode 100644 HWSTC-patcher/Properties/Settings.Designer.cs create mode 100644 HWSTC-patcher/Properties/Settings.settings create mode 100644 HWSTC-patcher/app.manifest diff --git a/HWSTC-patcher.sln b/HWSTC-patcher.sln new file mode 100644 index 0000000..d44b6ba --- /dev/null +++ b/HWSTC-patcher.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31019.35 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HWSTC-patcher", "HWSTC-patcher\HWSTC-patcher.csproj", "{D6B2C752-42DE-4A5C-A871-652C21DBD1BD}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D6B2C752-42DE-4A5C-A871-652C21DBD1BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D6B2C752-42DE-4A5C-A871-652C21DBD1BD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D6B2C752-42DE-4A5C-A871-652C21DBD1BD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D6B2C752-42DE-4A5C-A871-652C21DBD1BD}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C7DF903F-9E91-48AC-B9DC-FBBD89ACE3D3} + EndGlobalSection +EndGlobal diff --git a/HWSTC-patcher/App.config b/HWSTC-patcher/App.config new file mode 100644 index 0000000..8ac0d73 --- /dev/null +++ b/HWSTC-patcher/App.config @@ -0,0 +1,18 @@ + + + + +
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/HWSTC-patcher/App.xaml b/HWSTC-patcher/App.xaml new file mode 100644 index 0000000..787832c --- /dev/null +++ b/HWSTC-patcher/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/HWSTC-patcher/App.xaml.cs b/HWSTC-patcher/App.xaml.cs new file mode 100644 index 0000000..4fb9cce --- /dev/null +++ b/HWSTC-patcher/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 HWSTC_patcher +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/HWSTC-patcher/HWSTC-patcher.csproj b/HWSTC-patcher/HWSTC-patcher.csproj new file mode 100644 index 0000000..2a54080 --- /dev/null +++ b/HWSTC-patcher/HWSTC-patcher.csproj @@ -0,0 +1,103 @@ + + + + + Debug + AnyCPU + {D6B2C752-42DE-4A5C-A871-652C21DBD1BD} + WinExe + HWSTC_patcher + HWSTC-patcher + v4.8 + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + app.manifest + + + + + + + + + + + + + 4.0 + + + + + + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + App.xaml + Code + + + MainWindow.xaml + Code + + + + + Code + + + True + True + Resources.resx + + + True + Settings.settings + True + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + + + \ No newline at end of file diff --git a/HWSTC-patcher/MainWindow.xaml b/HWSTC-patcher/MainWindow.xaml new file mode 100644 index 0000000..ff6e01d --- /dev/null +++ b/HWSTC-patcher/MainWindow.xaml @@ -0,0 +1,22 @@ + + + +