Add Avalonia gui

This commit is contained in:
2022-01-08 13:17:02 +01:00
parent fb05d8887f
commit c317ab897f
19 changed files with 775 additions and 80 deletions

View File

@@ -0,0 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Remove=".gitignore" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="0.10.11" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.11" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="0.10.11" />
<PackageReference Include="MvvmGen" Version="1.1.2" />
</ItemGroup>
<ItemGroup>
<Folder Include="Shell\" />
</ItemGroup>
<ItemGroup>
<Compile Update="ShellView.axaml.cs">
<DependentUpon>ShellView.axaml</DependentUpon>
</Compile>
</ItemGroup>
</Project>