2018-08-04 15:38:49 -06:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-02-20 13:09:23 -07:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2018-05-11 17:10:27 -06:00
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-06-30 09:43:04 -06:00
|
|
|
|
<RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
|
2019-04-25 22:53:10 -06:00
|
|
|
|
<Configurations>Debug;Release;Profile Debug;Profile Release</Configurations>
|
2018-02-20 13:09:23 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-04-25 22:53:10 -06:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Debug|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
<DefineConstants>TRACE;USE_PROFILING</DefineConstants>
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-02-20 13:09:23 -07:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-04-25 22:53:10 -06:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Release|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
<DefineConstants>TRACE;USE_PROFILING</DefineConstants>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-09-01 16:04:20 -06:00
|
|
|
|
<ItemGroup>
|
2018-11-28 15:18:09 -07:00
|
|
|
|
<None Remove="Homebrew.npdm" />
|
2018-09-01 16:04:20 -06:00
|
|
|
|
<None Remove="RyujinxProfileImage.jpg" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2018-11-28 15:18:09 -07:00
|
|
|
|
<EmbeddedResource Include="Homebrew.npdm" />
|
2018-09-01 16:04:20 -06:00
|
|
|
|
<EmbeddedResource Include="RyujinxProfileImage.jpg" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-02-20 13:09:23 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\ChocolArm64\ChocolArm64.csproj" />
|
2018-03-15 18:06:24 -06:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.csproj" />
|
2018-10-17 11:15:50 -06:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
|
2018-02-20 13:09:23 -07:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Graphics\Ryujinx.Graphics.csproj" />
|
2019-04-25 22:53:10 -06:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Profiler\Ryujinx.Profiler.csproj" />
|
2018-02-20 13:09:23 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-11-16 20:36:49 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Concentus" Version="1.1.7" />
|
2019-01-04 17:41:49 -07:00
|
|
|
|
<PackageReference Include="LibHac" Version="0.2.0" />
|
2018-11-16 20:36:49 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-02-20 13:09:23 -07:00
|
|
|
|
</Project>
|