2018-08-04 23:38:49 +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>
|
2018-02-20 21:09:23 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-09-02 00:04:20 +02:00
|
|
|
|
<ItemGroup>
|
2018-11-28 23:18:09 +01:00
|
|
|
|
<None Remove="Homebrew.npdm" />
|
2018-09-02 00:04:20 +02:00
|
|
|
|
<None Remove="RyujinxProfileImage.jpg" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2018-11-28 23:18:09 +01:00
|
|
|
|
<EmbeddedResource Include="Homebrew.npdm" />
|
2018-09-02 00:04:20 +02:00
|
|
|
|
<EmbeddedResource Include="RyujinxProfileImage.jpg" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-02-20 21:09:23 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\ChocolArm64\ChocolArm64.csproj" />
|
2018-03-16 01:06:24 +01:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.csproj" />
|
2018-10-17 19:15:50 +02:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
|
2018-02-20 21:09:23 +01:00
|
|
|
|
<ProjectReference Include="..\Ryujinx.Graphics\Ryujinx.Graphics.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-11-17 04:36:49 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Concentus" Version="1.1.7" />
|
2019-01-05 01:41:49 +01:00
|
|
|
|
<PackageReference Include="LibHac" Version="0.2.0" />
|
2018-11-17 04:36:49 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-02-20 21:09:23 +01:00
|
|
|
|
</Project>
|