commit be5a4e9fa7b56a6747ccba80da502ff405d5f7e4 Author: erik Date: Fri May 30 23:06:07 2025 +0200 Add solution and project files; introduce .gitignore and clean IDE/build artifacts 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 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +