From 9d7caf96ad983089f8de22af169d2507b128d532 Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 13 Mar 2023 12:16:57 +0100 Subject: [PATCH] Add project files. --- Amogulator.csproj | 14 ++++++++++++++ Amogulator.sln | 25 +++++++++++++++++++++++++ AmogulatorVM.cs | 9 +++++++++ App.xaml | 9 +++++++++ App.xaml.cs | 14 ++++++++++++++ AssemblyInfo.cs | 10 ++++++++++ MainWindow.xaml | 44 ++++++++++++++++++++++++++++++++++++++++++++ MainWindow.xaml.cs | 24 ++++++++++++++++++++++++ 8 files changed, 149 insertions(+) create mode 100644 Amogulator.csproj create mode 100644 Amogulator.sln create mode 100644 AmogulatorVM.cs create mode 100644 App.xaml create mode 100644 App.xaml.cs create mode 100644 AssemblyInfo.cs create mode 100644 MainWindow.xaml create mode 100644 MainWindow.xaml.cs diff --git a/Amogulator.csproj b/Amogulator.csproj new file mode 100644 index 0000000..2623758 --- /dev/null +++ b/Amogulator.csproj @@ -0,0 +1,14 @@ + + + + WinExe + net7.0-windows + enable + true + + + + + + + diff --git a/Amogulator.sln b/Amogulator.sln new file mode 100644 index 0000000..aa5ed21 --- /dev/null +++ b/Amogulator.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.33424.131 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Amogulator", "Amogulator.csproj", "{E54C2EF1-2FE9-43E7-B5FC-984EC7E806B0}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E54C2EF1-2FE9-43E7-B5FC-984EC7E806B0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E54C2EF1-2FE9-43E7-B5FC-984EC7E806B0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E54C2EF1-2FE9-43E7-B5FC-984EC7E806B0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E54C2EF1-2FE9-43E7-B5FC-984EC7E806B0}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {79C30EBB-0022-43F8-B120-C4B3A70D9ECD} + EndGlobalSection +EndGlobal diff --git a/AmogulatorVM.cs b/AmogulatorVM.cs new file mode 100644 index 0000000..cd89959 --- /dev/null +++ b/AmogulatorVM.cs @@ -0,0 +1,9 @@ +using CommunityToolkit.Mvvm.ComponentModel; + +namespace Amogulator; +public partial class AmogulatorVM : ObservableObject { + + [ObservableProperty] + private string output = "test"; + +} diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..545237e --- /dev/null +++ b/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..fcc18f4 --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace Amogulator; +/// +/// Interaction logic for App.xaml +/// +public partial class App : Application { +} diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/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/MainWindow.xaml b/MainWindow.xaml new file mode 100644 index 0000000..6df8fbd --- /dev/null +++ b/MainWindow.xaml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + +