2018-06-21 21:10:19 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-03-16 00:06:24 +00:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2018-05-11 23:10:27 +00:00
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-06-30 15:43:04 +00:00
|
|
|
|
<RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
|
2018-03-16 00:06:24 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-11-15 02:22:50 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-03-16 00:06:24 +00:00
|
|
|
|
<ItemGroup>
|
2018-06-21 21:10:19 +00:00
|
|
|
|
<PackageReference Include="OpenTK.NetStandard" Version="1.0.4" />
|
2018-11-15 02:22:50 +00:00
|
|
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.5.1" />
|
2018-03-16 00:06:24 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-11-15 02:22:50 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ContentWithTargetPath Include="Native\libsoundio\libs\libsoundio.dll">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<TargetPath>libsoundio.dll</TargetPath>
|
|
|
|
|
</ContentWithTargetPath>
|
|
|
|
|
<ContentWithTargetPath Include="Native\libsoundio\libs\libsoundio.dylib">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<TargetPath>libsoundio.dylib</TargetPath>
|
|
|
|
|
</ContentWithTargetPath>
|
|
|
|
|
<ContentWithTargetPath Include="Native\libsoundio\libs\libsoundio.so">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<TargetPath>libsoundio.so</TargetPath>
|
|
|
|
|
</ContentWithTargetPath>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-03-16 00:06:24 +00:00
|
|
|
|
</Project>
|