Add solution and project files; introduce .gitignore and clean IDE/build artifacts

This commit is contained in:
erik 2025-05-30 23:06:07 +02:00
commit be5a4e9fa7
10 changed files with 270 additions and 0 deletions

25
MossyUpdater.csproj Normal file
View file

@ -0,0 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<None Remove="Mosswart_Mask_Live.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Ookii.Dialogs.Wpf" Version="5.0.1" />
<PackageReference Include="System.Drawing.Common" Version="9.0.5" />
<PackageReference Include="System.Windows.Extensions" Version="9.0.5" />
</ItemGroup>
<ItemGroup>
<Resource Include="Mosswart_Mask_Live.png" />
</ItemGroup>
</Project>