2018-06-21 17:10:19 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-02-20 15:09:23 -05:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2018-05-11 19:10:27 -04:00
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-06-30 11:43:04 -04:00
|
|
|
|
<RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
|
2019-04-26 00:53:10 -04:00
|
|
|
|
<Configurations>Debug;Release;Profile Debug;Profile Release</Configurations>
|
2018-02-20 15:09:23 -05:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-02-23 16:48:27 -05:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-04-26 00:53:10 -04:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Debug|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
<DefineConstants>TRACE;USE_PROFILING</DefineConstants>
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-02-23 16:48:27 -05:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-04-26 00:53:10 -04:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Release|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
<DefineConstants>TRACE;USE_PROFILING</DefineConstants>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-02-20 15:09:23 -05:00
|
|
|
|
<ItemGroup>
|
2018-12-02 21:38:47 -05:00
|
|
|
|
<PackageReference Include="FFmpeg.AutoGen" Version="4.0.0.4" />
|
2018-06-21 17:10:19 -04:00
|
|
|
|
<PackageReference Include="OpenTK.NetStandard" Version="1.0.4" />
|
2018-02-20 15:09:23 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\ChocolArm64\ChocolArm64.csproj" />
|
2018-10-17 13:15:50 -04:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
|
2018-02-20 15:09:23 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|