Skip to content
This repository was archived by the owner on Jun 27, 2019. It is now read-only.

Commit f005920

Browse files
author
Darrell Tunnell
committed
Appveyor build script fix.
Need to restore the tests project explicitly for netcoreapp1.1 only, can then build for netcoreapp1.1 and run the tests.
1 parent 9fdc2aa commit f005920

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ install:
1515
# - sudo nuget update -self
1616
- dotnet restore "./src/GitTools.Core.sln"
1717
script:
18-
- dotnet build "./src/GitTools.Core.sln" --configuration Debug /verbosity:detailed
18+
- dotnet restore "./src/GitTools.Core.Tests.csproj" /p:TargetFramework=netcoreapp1.1 /verbosity:detailed
19+
- dotnet build "./src/GitTools.Core.Tests.csproj" --configuration Debug --framework netcoreapp1.1 /verbosity:detailed
1920
- dotnet test ".src/GitTools.Core.Tests/GitTools.Core.Tests.csproj" --framework netcoreapp1.1
2021
# - mono --debug --runtime=v4.0.30319 %userprofile%.nuget/packages/nunit.consolerunner/3.6.1/tools/nunit3-console.exe ./output/debug/GitTools.Core.Tests/net45/GitTools.Core.Tests.dll -where "cat != NoMono"

0 commit comments

Comments
 (0)