2018-08-10 19:27:15 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
2018-02-16 01:04:38 +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-04-18 22:22:45 +02:00
|
|
|
<OutputType>Exe</OutputType>
|
2018-02-16 01:04:38 +01:00
|
|
|
<IsPackable>false</IsPackable>
|
2018-09-01 16:24:05 +02: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-16 01:04:38 +01:00
|
|
|
</PropertyGroup>
|
2018-08-10 19:27:15 +02:00
|
|
|
|
2018-02-16 01:04:38 +01:00
|
|
|
<PropertyGroup>
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
</PropertyGroup>
|
2018-08-10 19:27:15 +02:00
|
|
|
|
2018-02-16 01:04:38 +01:00
|
|
|
<ItemGroup>
|
2018-08-10 19:27:15 +02:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
|
2018-04-18 22:22:45 +02:00
|
|
|
<PackageReference Include="NUnit" Version="3.10.1" />
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.10.0" />
|
2018-05-12 01:10:27 +02:00
|
|
|
<PackageReference Include="System.Runtime.Intrinsics.Experimental" Version="4.5.0-rc1" />
|
2018-02-16 01:04:38 +01:00
|
|
|
</ItemGroup>
|
2018-08-10 19:27:15 +02:00
|
|
|
|
2018-02-16 01:04:38 +01:00
|
|
|
<ItemGroup>
|
2018-02-20 21:19:00 +01:00
|
|
|
<ProjectReference Include="..\ChocolArm64\ChocolArm64.csproj" />
|
2018-09-01 16:24:05 +02:00
|
|
|
<ProjectReference Include="..\Ryujinx.Tests.Unicorn\Ryujinx.Tests.Unicorn.csproj" />
|
2018-02-16 01:04:38 +01:00
|
|
|
</ItemGroup>
|
2018-08-10 19:27:15 +02:00
|
|
|
|
2018-09-01 16:24:05 +02: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-16 01:04:38 +01:00
|
|
|
</Project>
|