2018-06-21 21:10:19 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-02-04 23:08:20 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2018-05-11 23:10:27 +00:00
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-02-04 23:08:20 +00:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2018-02-14 21:34:38 +00:00
|
|
|
|
<RuntimeIdentifiers>win10-x64;osx-x64</RuntimeIdentifiers>
|
2018-02-04 23:08:20 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2018-06-21 21:10:19 +00:00
|
|
|
|
<PackageReference Include="OpenTK.NetStandard" Version="1.0.4" />
|
2018-02-04 23:08:20 +00:00
|
|
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.4.0" />
|
|
|
|
|
</ItemGroup>
|
2018-02-20 20:09:23 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\ChocolArm64\ChocolArm64.csproj" />
|
2018-03-16 00:06:24 +00:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.csproj" />
|
2018-06-11 00:46:42 +00:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.HLE\Ryujinx.HLE.csproj" />
|
2018-02-20 20:09:23 +00:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Graphics\Ryujinx.Graphics.csproj" />
|
|
|
|
|
</ItemGroup>
|
2018-02-09 03:23:20 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="Ryujinx.conf">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
2018-02-04 23:08:20 +00:00
|
|
|
|
</Project>
|