Remove build status, as it looks harder to add build to .net core
This commit is contained in:
@@ -7,8 +7,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{3820200F-354
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4780CECA-2B6F-4F79-97C5-D1B483CFC881}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
.travis.yml = .travis.yml
|
||||
build.sh = build.sh
|
||||
global.json = global.json
|
||||
README.md = README.md
|
||||
EndProjectSection
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
[](https://travis-ci.org/MihaiTheCoder/BehavioralPatterns)
|
||||
|
||||
BehavioralPatterns
|
||||
==================
|
||||
Behavioral Patterns is a .NET core solution that shows some ways to implement the behavioral patterns described by the Gang of Four.
|
||||
|
||||
4
build.sh
4
build.sh
@@ -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 \
|
||||
|
||||
Reference in New Issue
Block a user