This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| msbuild "TestStack.ConventionTests.Tests\TestStack.ConventionTests.Tests.xproj" | |
| cp tools\xunit.abstractions.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.abstractions.dll artifacts\bin\TestStack.ConventionTests.Tests\Debug\dotnet | |
| cp tools\xunit.core.2.1.0\build\_desktop\xunit.execution.desktop.dll artifacts\bin\TestStack.ConventionTests.Tests\Debug\dotnet | |
| cp tools\xunit.extensibility.core.2.1.0\lib\portable-net45+win8+wp8+wpa81\xunit.core.dll artifacts\bin\TestStack.ConventionTests.Tests\Debug\dotnet | |
| . "tools\xunit.runner.console.2.1.0\tools\xunit.console.exe" artifacts\bin\TestStack.ConventionTests.Tests\Debug\dotnet\TestStack.ConventionTests.Tests.dll |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Simple bridge to allow capturing of LibLog log messages in xUnit 2.0 tests | |
| // Usage: | |
| private readonly ITestOutputHelper _outputHelper; | |
| public Example(ITestOutputHelper outputHelper) { _outputHelper = outputHelper; } | |
| [Test] | |
| public void Test() | |
| { | |
| using (LogHelper.Capture(_outputHelper, LogProvider.SetCurrentLogProvider)) | |
| { | |
| // Call library code, log messages will be captured |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @startuml | |
| participant master | |
| participant develop | |
| master -> master: tag 1.2.0 | |
| master -> develop: branch from master | |
| develop -> develop: commit | |
| note over develop #D3D3D3: 1.3.0-unstable.1 | |
| create participant "feature/myfeature" as feature | |
| develop -> feature: branch from develop | |
| activate feature |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @startuml | |
| participant develop | |
| participant master | |
| master -> master: tag 1.3.0 | |
| master -> develop: branch from master | |
| note over develop, master | |
| Create 2.0.0 release and complete | |
| end note | |
| master -> master: tag 2.0.0 | |
| create participant "support/1.x" as support |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @startuml | |
| participant develop | |
| participant master | |
| master -> master: tag 1.3.0 | |
| master -> develop: branch from master | |
| note over develop, master | |
| Create 2.0.0 release and complete | |
| end note | |
| master -> master: tag 2.0.0 | |
| create participant "support/1.x" as support |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @startuml | |
| participant master | |
| participant develop | |
| master -> master: tag 1.3.0 | |
| master -> develop: branch from master | |
| develop -> develop: commit | |
| create participant "release/2.0.0" as release | |
| develop -> release: branch from develop | |
| activate release | |
| note over release #D3D3D3: 2.0.0-beta.1+0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @startuml | |
| participant master | |
| participant develop | |
| master -> master: tag 1.2.1 | |
| master -> develop: branch from master | |
| develop -> develop: commit | |
| create participant "release/1.3.0" as release | |
| develop -> release: branch from develop | |
| activate release | |
| note over release #D3D3D3: 1.3.0-beta.1+0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @startuml | |
| participant develop | |
| participant master | |
| master -> master: tag 1.2.0 | |
| create participant "hotfix/1.2.1" as hotfix | |
| master -> hotfix: branch from master | |
| activate hotfix | |
| hotfix -> hotfix: commit | |
| hotfix -> hotfix: commit | |
| note over hotfix #D3D3D3: 1.2.1-beta.1+2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @startuml | |
| participant master | |
| participant develop | |
| master -> master: tag 1.2.0 | |
| master -> develop: branch from master | |
| develop -> develop: commit | |
| note over develop #D3D3D3: 1.3.0-unstable.1 | |
| create participant "pull/2/merge" as pr | |
| develop -> pr: branch from develop | |
| activate pr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @startuml | |
| participant "pull/2/merge" as feature | |
| participant develop | |
| participant "release/2.0.0" as majorRelease | |
| participant "release/1.3.0" as minorRelease | |
| participant master | |
| activate develop | |
| activate master | |
| master -> master: commit | |
| master -> master: tag 1.2.0 |