Skip to content

Commit aaef18f

Browse files
authored
Merge pull request #479 from nunit/issue-388b
Merge .NET Standard Engine code back into the main solution
2 parents a3f084e + 014340a commit aaef18f

File tree

146 files changed

+1298
-2024
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+1298
-2024
lines changed

.travis.yml

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,31 @@
11
language: csharp
22
sudo: required
33

4-
dotnet: 2.1.4 # SDK version; includes runtime version 2.0.5. Need 2.0+ for netcoreapp2.0 tests.
5-
4+
dotnet: 2.1.401
65
mono: 5.10.0 # Need 5.2+ for the included MSBuild.
76

87
matrix:
98
include:
109
- os: linux
1110
install:
12-
- sudo apt-get install dotnet-sharedframework-microsoft.netcore.app-1.1.6
13-
14-
- os: osx
15-
install:
16-
- curl https://download.microsoft.com/download/A/7/E/A7EF2AFF-F77B-4F77-A21B-0F7BD09A4065/dotnet-osx-x64.1.1.6.pkg -O
17-
- sudo installer -pkg dotnet-osx-x64.1.1.6.pkg -target /
11+
- wget -q https://packages.microsoft.com/config/ubuntu/14.04/packages-microsoft-prod.deb
12+
- sudo dpkg -i packages-microsoft-prod.deb
13+
- sudo apt-get install apt-transport-https
14+
- sudo apt-get update
15+
- sudo apt-get install dotnet-sharedframework-microsoft.netcore.app-1.1.2
16+
- sudo apt-get install dotnet-runtime-2.0.6
1817

18+
# macOS package restore currently taking >30 mins on Travis
19+
# - os: osx
1920
# .NET Core 2 requires OSX 10.12+
2021
# https://github.com/dotnet/core/blob/master/release-notes/2.0/2.0-supported-os.md#macos
2122
# https://docs.travis-ci.com/user/reference/osx/#OS-X-Version
22-
osx_image: xcode9.1
23+
# osx_image: xcode9.4
24+
# install:
25+
# - curl https://download.microsoft.com/download/D/0/2/D028801E-0802-43C8-9F9F-C7DB0A39B344/dotnet-osx-x64.1.1.2.pkg -O
26+
# - sudo installer -pkg dotnet-osx-x64.1.1.2.pkg -target /
27+
# - curl https://download.microsoft.com/download/8/D/A/8DA04DA7-565B-4372-BBCE-D44C7809A467/dotnet-runtime-2.0.6-osx-x64.pkg -O
28+
# - sudo installer -pkg dotnet-runtime-2.0.6-osx-x64.pkg -target /
2329

2430
script:
2531
- ./build.sh --target "Travis" --configuration "Release"

NUnit.Engine.Netstandard.sln

Lines changed: 0 additions & 58 deletions
This file was deleted.

NUnitConsole.sln

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1414
BUILDING.md = BUILDING.md
1515
CHANGES.txt = CHANGES.txt
1616
CONTRIBUTING.md = CONTRIBUTING.md
17-
EngineAndConsoleTests.nunit = EngineAndConsoleTests.nunit
1817
LICENSE.txt = LICENSE.txt
1918
NOTICES.txt = NOTICES.txt
2019
NuGet.config = NuGet.config

NuGet.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<configuration>
33
<packageSources>
44
<add key="NUnit AppVeyor CI" value="https://ci.appveyor.com/nuget/nunit" />
5-
<add key="NUNit MyGet Feed" value="https://www.myget.org/F/nunit/api/v2" />
5+
<add key="NUnit MyGet Feed" value="https://www.myget.org/F/nunit/api/v3/index.json" />
66
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
77
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
88
</packageSources>

0 commit comments

Comments
 (0)