MobileSandbox.csproj 1.4 KB

1234567891011121314151617181920212223242526272829
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>net8.0;net8.0-android;net8.0-browser;net8.0-tizen</TargetFrameworks>
  4. <TargetFrameworks Condition="!$([MSBuild]::IsOsPlatform('Linux'))">$(TargetFrameworks);net8.0-ios</TargetFrameworks>
  5. <OutputType>Exe</OutputType>
  6. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  7. <Nullable>enable</Nullable>
  8. <IncludeAvaloniaGenerators>true</IncludeAvaloniaGenerators>
  9. </PropertyGroup>
  10. <PropertyGroup>
  11. <AvaloniaSingleProject>true</AvaloniaSingleProject>
  12. <ApplicationTitle>Mobile Sandbox</ApplicationTitle>
  13. <ApplicationId>Avalonia.MobileSandbox</ApplicationId>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\..\packages\Avalonia\Avalonia.csproj" />
  17. <ProjectReference Include="..\..\src\Avalonia.Controls.ColorPicker\Avalonia.Controls.ColorPicker.csproj" />
  18. <ProjectReference Include="..\..\src\Avalonia.Controls.DataGrid\Avalonia.Controls.DataGrid.csproj" />
  19. <ProjectReference Include="..\..\src\Avalonia.Fonts.Inter\Avalonia.Fonts.Inter.csproj" />
  20. <ProjectReference Include="..\..\src\Avalonia.Themes.Fluent\Avalonia.Themes.Fluent.csproj" />
  21. <ProjectReference Include="..\MiniMvvm\MiniMvvm.csproj" />
  22. <ProjectReference Include="..\SampleControls\ControlSamples.csproj" />
  23. </ItemGroup>
  24. <Import Project="..\..\build\BuildTargets.targets" />
  25. <Import Project="..\..\build\SourceGenerators.props" />
  26. </Project>