AppWithoutLifetime.csproj 884 B

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