We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 570edbd commit 144004eCopy full SHA for 144004e
build.sh
@@ -5,15 +5,13 @@ dotnet --info
5
dotnet restore
6
7
for path in src/**/*.csproj; do
8
- dotnet build -f netstandard1.3 -c Release ${path}
9
- dotnet build -f netcoreapp1.1 -c Release ${path}
+ dotnet build -f netstandard1.0 -c Release ${path}
10
done
11
12
for path in test/*.Tests/*.csproj; do
13
- dotnet test -f netcoreapp1.1 -c Release ${path}
+ dotnet test -f netcoreapp2.0 -c Release ${path}
14
15
16
-for path in sample/ConsoleDemo/*.csproj; do
17
18
- dotnet run -f netcoreapp1.1 --project ${path}
+for path in sample/**/*.csproj; do
+ dotnet build -f netcoreapp2.0 -c Release ${path}
19
0 commit comments