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