Ryujinx.csproj 603 B

1234567891011121314151617
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp2.0</TargetFramework>
  5. <RuntimeIdentifier>win10-x64</RuntimeIdentifier>
  6. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="OpenTK.NETCore" Version="1.1.2749.6433" />
  10. <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.4.0" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <None Update="Ryujinx.conf">
  14. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  15. </None>
  16. </ItemGroup>
  17. </Project>