Skip to content

Commit d11ed0c

Browse files
committed
Added tests to build.sh.
1 parent e66c9a4 commit d11ed0c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

build.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,10 @@ done
88
for path in sample/project.json; do
99
dirname="$(dirname "${path}")"
1010
dotnet build ${dirname}
11-
done
11+
done
12+
13+
for path in test/Serilog.Sinks.Splunk.Tests/project.json; do
14+
dirname="$(dirname "${path}")"
15+
dotnet build ${dirname} -f netcoreapp1.0 -c Release
16+
dotnet test ${dirname} -f netcoreapp1.0 -c Release
17+
done

0 commit comments

Comments
 (0)