2018-08-10 10:27:15 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
2018-02-15 16:04:38 -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>
|
2018-04-18 13:22:45 -07:00
|
|
|
<OutputType>Exe</OutputType>
|
2018-02-15 16:04:38 -08:00
|
|
|
<IsPackable>false</IsPackable>
|
2018-09-01 07:24:05 -07:00
|
|
|
|
|
|
|
<TargetOS Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">windows</TargetOS>
|
|
|
|
<TargetOS Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'">osx</TargetOS>
|
|
|
|
<TargetOS Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' == 'true'">linux</TargetOS>
|
2018-02-15 16:04:38 -08:00
|
|
|
</PropertyGroup>
|
2018-08-10 10:27:15 -07:00
|
|
|
|
2018-02-15 16:04:38 -08:00
|
|
|
<PropertyGroup>
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
</PropertyGroup>
|
2018-08-10 10:27:15 -07:00
|
|
|
|
2018-02-15 16:04:38 -08:00
|
|
|
<ItemGroup>
|
2019-03-13 01:23:52 -07:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.0.1" />
|
2018-10-23 07:12:45 -07:00
|
|
|
<PackageReference Include="NUnit" Version="3.11.0" />
|
2019-03-13 01:23:52 -07:00
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.13.0" />
|
2018-05-11 16:10:27 -07:00
|
|
|
<PackageReference Include="System.Runtime.Intrinsics.Experimental" Version="4.5.0-rc1" />
|
2018-02-15 16:04:38 -08:00
|
|
|
</ItemGroup>
|
2018-08-10 10:27:15 -07:00
|
|
|
|
2018-02-15 16:04:38 -08:00
|
|
|
<ItemGroup>
|
2018-02-20 12:19:00 -08:00
|
|
|
<ProjectReference Include="..\ChocolArm64\ChocolArm64.csproj" />
|
2018-09-01 07:24:05 -07:00
|
|
|
<ProjectReference Include="..\Ryujinx.Tests.Unicorn\Ryujinx.Tests.Unicorn.csproj" />
|
2018-02-15 16:04:38 -08:00
|
|
|
</ItemGroup>
|
2018-08-10 10:27:15 -07:00
|
|
|
|
2018-09-01 07:24:05 -07:00
|
|
|
<Target Name="CopyUnicorn" AfterTargets="Build">
|
|
|
|
<Copy SourceFiles="..\Ryujinx.Tests.Unicorn\libs\$(TargetOS)\unicorn.dll" DestinationFolder="$(OutputPath)" ContinueOnError="true" />
|
|
|
|
<Copy SourceFiles="..\Ryujinx.Tests.Unicorn\libs\$(TargetOS)\libunicorn.dylib" DestinationFolder="$(OutputPath)" ContinueOnError="true" />
|
|
|
|
<Copy SourceFiles="..\Ryujinx.Tests.Unicorn\libs\$(TargetOS)\libunicorn.so" DestinationFolder="$(OutputPath)" ContinueOnError="true" />
|
|
|
|
</Target>
|
|
|
|
|
2018-02-15 16:04:38 -08:00
|
|
|
</Project>
|