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

@@ -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

View File

@@ -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.

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 \