mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 01:25:25 +00:00
macOS build (#13)
* Ryujinx.csproj: Add osx-x64 RuntimeIdentifier Allows Ryujinx to build and run on macOS * Add .travis.yml
This commit is contained in:
parent
7ed1153062
commit
74fbe1494d
8
.travis.yml
Normal file
8
.travis.yml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
os: osx
|
||||||
|
language: csharp
|
||||||
|
solution: Ryujinx.sln
|
||||||
|
mono: none
|
||||||
|
dotnet: 2.0.0
|
||||||
|
script:
|
||||||
|
- dotnet restore
|
||||||
|
- dotnet build
|
|
@ -2,8 +2,8 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
||||||
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
|
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
|
<RuntimeIdentifiers>win10-x64;osx-x64</RuntimeIdentifiers>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="OpenTK.NETCore" Version="1.1.2749.6433" />
|
<PackageReference Include="OpenTK.NETCore" Version="1.1.2749.6433" />
|
||||||
|
|
Loading…
Reference in a new issue