2018-05-17 12:25:42 -06:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-06-30 09:43:04 -06:00
|
|
|
<RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
|
2018-08-10 11:27:15 -06:00
|
|
|
<OutputType>Exe</OutputType>
|
2019-04-25 22:53:10 -06: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 12:25:42 -06:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2018-08-10 11:27:15 -06:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Ryujinx.Graphics\Ryujinx.Graphics.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2018-05-17 12:25:42 -06:00
|
|
|
</Project>
|