TextTestApp.csproj 955 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>$(AvsCurrentTargetFramework)</TargetFramework>
  5. <TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
  6. <ApplicationManifest>app.manifest</ApplicationManifest>
  7. <IncludeAvaloniaGenerators>true</IncludeAvaloniaGenerators>
  8. <Nullable>enable</Nullable>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" />
  12. <ProjectReference Include="..\..\src\Avalonia.Fonts.Inter\Avalonia.Fonts.Inter.csproj" />
  13. <ProjectReference Include="..\..\src\Avalonia.Themes.Fluent\Avalonia.Themes.Fluent.csproj" />
  14. </ItemGroup>
  15. <Import Project="..\..\build\SampleApp.props" />
  16. <Import Project="..\..\build\ReferenceCoreLibraries.props" />
  17. <Import Project="..\..\build\BuildTargets.targets" />
  18. <Import Project="..\..\build\SourceGenerators.props" />
  19. </Project>