diff --git a/BehavioralPatterns.sln b/BehavioralPatterns.sln index c19d1d8..4e2e187 100644 --- a/BehavioralPatterns.sln +++ b/BehavioralPatterns.sln @@ -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 diff --git a/README.md b/README.md index b064050..0aebaed 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,3 @@ -[![Build Status](https://travis-ci.org/MihaiTheCoder/BehavioralPatterns.svg?branch=master)](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. diff --git a/build.sh b/build.sh index 80a040f..190a48e 100755 --- a/build.sh +++ b/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 \