mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 00:58:39 +00:00
74fbe1494d
* Ryujinx.csproj: Add osx-x64 RuntimeIdentifier Allows Ryujinx to build and run on macOS * Add .travis.yml
17 lines
613 B
XML
17 lines
613 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<RuntimeIdentifiers>win10-x64;osx-x64</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="OpenTK.NETCore" Version="1.1.2749.6433" />
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.4.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Update="Ryujinx.conf">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project> |