Skip to content

Commit 9471637

Browse files
committed
Updated package versions to 1.1.1 and fixed Travis CI Mono test runs (#269)
1 parent 7be74b0 commit 9471637

File tree

124 files changed

+9518
-9699
lines changed

Some content is hidden

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

124 files changed

+9518
-9699
lines changed

build.sh

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
#!/usr/bin/env bash
22
dotnet restore
33
dotnet build --configuration Release
4-
dotnet test "samples/MusicStore/MusicStore.Test/project.json" --configuration Release
5-
dotnet test "samples/ApplicationParts/ApplicationParts.Test/project.json" --configuration Release
6-
dotnet test "samples/NoStartup/NoStartup.Test/project.json" --configuration Release
7-
dotnet test "samples/Lite/Lite.Test/project.json" --configuration Release
4+
dotnet test "samples/MusicStore/MusicStore.Test/project.json" --configuration Release -f netcoreapp1.1
5+
dotnet test "samples/ApplicationParts/ApplicationParts.Test/project.json" --configuration Release -f netcoreapp1.1
6+
dotnet test "samples/NoStartup/NoStartup.Test/project.json" --configuration Release -f netcoreapp1.1
7+
dotnet test "samples/Lite/Lite.Test/project.json" --configuration Release -f netcoreapp1.1
8+
9+
mono \
10+
./samples/MusicStore/MusicStore.Test/bin/Release/net451/*/dotnet-test-xunit.exe \
11+
./samples/MusicStore/MusicStore.Test/bin/Release/net451/*/MusicStore.Test.dll
12+
13+
mono \
14+
./samples/ApplicationParts/ApplicationParts.Test/bin/Release/net451/*/dotnet-test-xunit.exe \
15+
./samples/ApplicationParts/ApplicationParts.Test/bin/Release/net451/*/ApplicationParts.Test.dll
16+
17+
mono \
18+
./samples/NoStartup/NoStartup.Test/bin/Release/net451/*/dotnet-test-xunit.exe \
19+
./samples/NoStartup/NoStartup.Test/bin/Release/net451/*/NoStartup.Test.dll
20+
21+
mono \
22+
./samples/Lite/Lite.Test/bin/Release/net451/*/dotnet-test-xunit.exe \
23+
./samples/Lite/Lite.Test/bin/Release/net451/*/Lite.Test.dll

samples/ApplicationParts/ApplicationParts.Controllers/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dependencies": {
33
"NETStandard.Library": "1.6.1",
4-
"Microsoft.AspNetCore.Mvc": "1.1.0",
4+
"Microsoft.AspNetCore.Mvc": "1.1.1",
55
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
66
"ApplicationParts.Models": "*",
77
"ApplicationParts.Services": "*"

0 commit comments

Comments
 (0)