diff options
| -rw-r--r-- | .travis.yml | 8 | ||||
| -rw-r--r-- | Ryujinx.csproj | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..15c55336 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +os: osx +language: csharp +solution: Ryujinx.sln +mono: none +dotnet: 2.0.0 +script: + - dotnet restore + - dotnet build diff --git a/Ryujinx.csproj b/Ryujinx.csproj index 9ad696d8..9b0e7396 100644 --- a/Ryujinx.csproj +++ b/Ryujinx.csproj @@ -2,8 +2,8 @@ <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>netcoreapp2.0</TargetFramework> - <RuntimeIdentifier>win10-x64</RuntimeIdentifier> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> + <RuntimeIdentifiers>win10-x64;osx-x64</RuntimeIdentifiers> </PropertyGroup> <ItemGroup> <PackageReference Include="OpenTK.NETCore" Version="1.1.2749.6433" /> |
