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