From be5a4e9fa7b56a6747ccba80da502ff405d5f7e4 Mon Sep 17 00:00:00 2001 From: erik Date: Fri, 30 May 2025 23:06:07 +0200 Subject: [PATCH] Add solution and project files; introduce .gitignore and clean IDE/build artifacts --- .gitignore | 23 ++++++ App.xaml | 9 +++ App.xaml.cs | 14 ++++ AssemblyInfo.cs | 10 +++ MainWindow.xaml | 76 ++++++++++++++++++ MainWindow.xaml.cs | 72 +++++++++++++++++ Mosswart_Mask_Live.png | Bin 0 -> 83240 bytes MossyUpdater.csproj | 25 ++++++ MossyUpdater.sln | 25 ++++++ .../PublishProfiles/FolderProfile.pubxml | 16 ++++ 10 files changed, 270 insertions(+) create mode 100644 .gitignore 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 create mode 100644 Mosswart_Mask_Live.png create mode 100644 MossyUpdater.csproj create mode 100644 MossyUpdater.sln create mode 100644 Properties/PublishProfiles/FolderProfile.pubxml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1cbe923 --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +# Visual Studio +.vs/ +*.user +*.suo +*.userosscache +*.VC.db + +# Build output +bin/ +obj/ + +# Rider +.idea/ + +# NuGet +packages/ + +# Resharper +_ReSharper*/ + +# OS files +Thumbs.db +.DS_Store diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..09770ed --- /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..bdaab89 --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace MossyUpdater +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs new file mode 100644 index 0000000..372e037 --- /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..3d84671 --- /dev/null +++ b/MainWindow.xaml @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +