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