NativeEmbedSample.csproj 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp2.0</TargetFramework>
  5. <TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
  6. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="MonoMac.NetStandard" Version="0.0.4" />
  10. <ProjectReference Include="..\..\..\src\Avalonia.Desktop\Avalonia.Desktop.csproj" />
  11. <ProjectReference Include="..\..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" />
  12. <ProjectReference Include="..\..\..\src\Avalonia.X11\Avalonia.X11.csproj" />
  13. <PackageReference Include="Avalonia.Angle.Windows.Natives" Version="2.1.0.2019013001" />
  14. <AvaloniaResource Include="**\*.xaml">
  15. <SubType>Designer</SubType>
  16. </AvaloniaResource>
  17. <None Remove="nodes.mp4" />
  18. <Content Include="nodes.mp4">
  19. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  20. </Content>
  21. <Compile Include="..\..\..\src\Avalonia.X11\NativeDialogs\Gtk.cs" />
  22. </ItemGroup>
  23. <Import Project="..\..\..\build\SampleApp.props" />
  24. <Import Project="..\..\..\build\BuildTargets.targets" />
  25. <Import Project="..\..\..\build\ReferenceCoreLibraries.props" />
  26. </Project>