Remove build status, as it looks harder to add build to .net core

This commit is contained in:
Petrutiu Mihai
2016-07-13 14:23:04 +03:00
parent 176b372478
commit 6acb465f3e
3 changed files with 2 additions and 6 deletions

View File

@@ -14,10 +14,10 @@ dotnet restore
# Ideally we would use the 'dotnet test' command to test netcoreapp and net451 so restrict for now
# but this currently doesn't work due to https://github.com/dotnet/cli/issues/3073 so restrict to netcoreapp
dotnet test ./test/TEST_PROJECT_NAME -c Release -f netcoreapp1.0
dotnet test ./BehavioralPatterns/TEST_PROJECT_NAME -c Release -f netcoreapp1.0
# Instead, run directly with mono for the full .net version
dotnet build ./test/TEST_PROJECT_NAME -c Release -f net451
dotnet build ./BehavioralPatterns/TEST_PROJECT_NAME -c Release -f net451
mono \
./test/TEST_PROJECT_NAME/bin/Release/net451/*/dotnet-test-xunit.exe \