AvaloniaApplication1.csproj 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
  7. <ApplicationManifest>app.manifest</ApplicationManifest>
  8. <AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <Folder Include="Models\" />
  12. <AvaloniaResource Include="Assets\**" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <PackageReference Include="Avalonia" Version="11.1.0" />
  16. <PackageReference Include="Avalonia.Desktop" Version="11.1.0" />
  17. <PackageReference Include="Avalonia.Themes.Fluent" Version="11.1.0" />
  18. <PackageReference Include="Avalonia.Fonts.Inter" Version="11.1.0" />
  19. <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
  20. <PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.1.0" />
  21. <PackageReference Include="Avalonia.ReactiveUI" Version="11.1.0" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <Compile Update="Views\Auth.axaml.cs">
  25. <DependentUpon>Auth.axaml</DependentUpon>
  26. </Compile>
  27. </ItemGroup>
  28. </Project>