Sandbox.csproj 733 B

123456789101112131415161718
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>netcoreapp3.1</TargetFramework>
  5. <TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" />
  9. <ProjectReference Include="..\..\src\Avalonia.ReactiveUI\Avalonia.ReactiveUI.csproj" />
  10. <ProjectReference Include="..\..\src\Avalonia.Controls.DataGrid\Avalonia.Controls.DataGrid.csproj" />
  11. </ItemGroup>
  12. <Import Project="..\..\build\SampleApp.props" />
  13. <Import Project="..\..\build\ReferenceCoreLibraries.props" />
  14. <Import Project="..\..\build\BuildTargets.targets" />
  15. </Project>