Skip to content

Commit add696a

Browse files
committed
Added build file for osx/nix.
1 parent 942f35f commit add696a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

build.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/bin/bash
2+
dotnet --info
3+
dotnet restore
4+
5+
for path in src/**/*.csproj; do
6+
dotnet build -f netstandard1.3 -c Release ${path}
7+
dotnet build -f netstandard2.0 -c Release ${path}
8+
9+
done
10+
11+
for path in test/*.Tests/*.csproj; do
12+
dotnet test -f netcoreapp2.0 -c Release ${path}
13+
done

0 commit comments

Comments
 (0)