From 1534736af2e7d05aae2d27d5c29b2d086c77cf09 Mon Sep 17 00:00:00 2001 From: DevWiki Date: Wed, 19 Jun 2024 11:01:02 +0800 Subject: [PATCH] init project --- HarmonyDevTools.sln | 16 +++++++++++++++ HarmonyDevTools/App.xaml | 9 +++++++++ HarmonyDevTools/App.xaml.cs | 15 ++++++++++++++ HarmonyDevTools/AssemblyInfo.cs | 10 +++++++++ HarmonyDevTools/HarmonyDevTools.csproj | 10 +++++++++ HarmonyDevTools/MainWindow.xaml | 12 +++++++++++ HarmonyDevTools/MainWindow.xaml.cs | 28 ++++++++++++++++++++++++++ global.json | 7 +++++++ 8 files changed, 107 insertions(+) create mode 100644 HarmonyDevTools.sln create mode 100644 HarmonyDevTools/App.xaml create mode 100644 HarmonyDevTools/App.xaml.cs create mode 100644 HarmonyDevTools/AssemblyInfo.cs create mode 100644 HarmonyDevTools/HarmonyDevTools.csproj create mode 100644 HarmonyDevTools/MainWindow.xaml create mode 100644 HarmonyDevTools/MainWindow.xaml.cs create mode 100644 global.json diff --git a/HarmonyDevTools.sln b/HarmonyDevTools.sln new file mode 100644 index 0000000..e020f82 --- /dev/null +++ b/HarmonyDevTools.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HarmonyDevTools", "HarmonyDevTools\HarmonyDevTools.csproj", "{BBCBF001-B0B9-4F6D-A6EF-CC85E9D6FFFB}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BBCBF001-B0B9-4F6D-A6EF-CC85E9D6FFFB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BBCBF001-B0B9-4F6D-A6EF-CC85E9D6FFFB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BBCBF001-B0B9-4F6D-A6EF-CC85E9D6FFFB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BBCBF001-B0B9-4F6D-A6EF-CC85E9D6FFFB}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/HarmonyDevTools/App.xaml b/HarmonyDevTools/App.xaml new file mode 100644 index 0000000..834173e --- /dev/null +++ b/HarmonyDevTools/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/HarmonyDevTools/App.xaml.cs b/HarmonyDevTools/App.xaml.cs new file mode 100644 index 0000000..837c000 --- /dev/null +++ b/HarmonyDevTools/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 HarmonyDevTools +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application { } +} \ No newline at end of file diff --git a/HarmonyDevTools/AssemblyInfo.cs b/HarmonyDevTools/AssemblyInfo.cs new file mode 100644 index 0000000..4a05c7d --- /dev/null +++ b/HarmonyDevTools/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) +)] \ No newline at end of file diff --git a/HarmonyDevTools/HarmonyDevTools.csproj b/HarmonyDevTools/HarmonyDevTools.csproj new file mode 100644 index 0000000..9d8b401 --- /dev/null +++ b/HarmonyDevTools/HarmonyDevTools.csproj @@ -0,0 +1,10 @@ + + + + WinExe + net6.0-windows + enable + true + + + diff --git a/HarmonyDevTools/MainWindow.xaml b/HarmonyDevTools/MainWindow.xaml new file mode 100644 index 0000000..b13768a --- /dev/null +++ b/HarmonyDevTools/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/HarmonyDevTools/MainWindow.xaml.cs b/HarmonyDevTools/MainWindow.xaml.cs new file mode 100644 index 0000000..835638a --- /dev/null +++ b/HarmonyDevTools/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 HarmonyDevTools +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/global.json b/global.json new file mode 100644 index 0000000..1bcf6c0 --- /dev/null +++ b/global.json @@ -0,0 +1,7 @@ +{ + "sdk": { + "version": "6.0.0", + "rollForward": "latestMinor", + "allowPrerelease": false + } +} \ No newline at end of file