MobileSandbox.Desktop.csproj 962 B

12345678910111213141516171819202122232425
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>$(AvsCurrentTargetFramework)</TargetFramework>
  5. <TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" />
  9. <ProjectReference Include="..\..\src\Avalonia.Dialogs\Avalonia.Dialogs.csproj" />
  10. <ProjectReference Include="..\MobileSandbox\MobileSandbox.csproj" />
  11. <!-- For native controls test -->
  12. <PackageReference Include="MonoMac.NetStandard" Version="0.0.4" />
  13. </ItemGroup>
  14. <PropertyGroup>
  15. <!-- For Microsoft.CodeAnalysis -->
  16. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  17. <ApplicationManifest>app.manifest</ApplicationManifest>
  18. </PropertyGroup>
  19. <Import Project="..\..\build\SampleApp.props" />
  20. <Import Project="..\..\build\ReferenceCoreLibraries.props" />
  21. </Project>