2018-05-17 19:25:42 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-06-30 16:43:04 +01:00
|
|
|
<RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
|
2018-08-10 18:27:15 +01:00
|
|
|
<OutputType>Exe</OutputType>
|
2019-04-26 05:53:10 +01:00
|
|
|
<Configurations>Debug;Release;Profile Debug;Profile Release</Configurations>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Release|AnyCPU'">
|
|
|
|
<DefineConstants>TRACE;USE_PROFILING</DefineConstants>
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Debug|AnyCPU'">
|
|
|
|
<DefineConstants>TRACE;USE_PROFILING</DefineConstants>
|
|
|
|
<Optimize>false</Optimize>
|
2018-05-17 19:25:42 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2018-08-10 18:27:15 +01:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Ryujinx.Graphics\Ryujinx.Graphics.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2018-05-17 19:25:42 +01:00
|
|
|
</Project>
|