mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-11-16 06:23:17 +01:00
22 lines
861 B
XML
22 lines
861 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<RuntimeIdentifiers>win10-x64;osx-x64</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="OpenTK.NETCore" Version="1.1.2749.6433" />
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.4.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ChocolArm64\ChocolArm64.csproj" />
|
|
<ProjectReference Include="..\Ryujinx.Core\Ryujinx.Core.csproj" />
|
|
<ProjectReference Include="..\Ryujinx.Graphics\Ryujinx.Graphics.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Update="Ryujinx.conf">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project> |