Skip to content

Commit

Permalink
Support SkipTests and NoBuild properties (aspnet#530)
Browse files Browse the repository at this point in the history
  • Loading branch information
natemcmaster authored and Nate McMaster committed Jan 3, 2018
1 parent 7d9c528 commit ae83549
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions files/KoreBuild/KoreBuild.Common.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ Standard lifecycle chain.
<RestoreDependsOn>Prepare</RestoreDependsOn>
<CompileDependsOn>Restore</CompileDependsOn>
<PackageDependsOn>Compile</PackageDependsOn>
<TestDependsOn>Package</TestDependsOn>
<VerifyDependsOn>Test</VerifyDependsOn>
<TestDependsOn Condition=" '$(NoBuild)' != 'true' ">Package</TestDependsOn>
<VerifyDependsOn Condition=" '$(SkipTests)' == 'true' ">Package</VerifyDependsOn>
<VerifyDependsOn Condition=" '$(SkipTests)' != 'true' ">Test</VerifyDependsOn>
<BuildDependsOn>Verify</BuildDependsOn>

<CleanDependsOn></CleanDependsOn>
Expand Down

0 comments on commit ae83549

Please sign in to comment.