File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ if(Test-Path .\artifacts) { Remove-Item .\artifacts -Force -Recurse }
52
52
53
53
EnsurePsbuildInstalled
54
54
55
- exec { & dotnet restore }
55
+ exec { & dotnet restore . / src / JsonApiDotNetCore / JsonApiDotNetCore.csproj }
56
56
57
57
# Invoke-MSBuild
58
58
Original file line number Diff line number Diff line change @@ -9,9 +9,11 @@ if [ -d $artifactsFolder ]; then
9
9
rm -R $artifactsFolder
10
10
fi
11
11
12
- dotnet restore
12
+ dotnet restore ./src/JsonApiDotNetCore/JsonApiDotNetCore.csproj
13
+ dotnet restore ./src/JsonApiDotNetCoreExample/JsonApiDotNetCoreExample.csproj
14
+ dotnet restore ./test/JsonApiDotNetCoreExampleTests/JsonApiDotNetCoreExampleTests.csproj
13
15
14
- dotnet test ./test/JsonApiDotNetCoreExampleTests -c Release -f netcoreapp1.0
16
+ dotnet test ./test/JsonApiDotNetCoreExampleTests/JsonApiDotNetCoreExampleTests.csproj
15
17
16
18
revision=${TRAVIS_JOB_ID:= 1}
17
19
revision=$( printf " %04d" $revision )
You can’t perform that action at this time.
0 commit comments