Created
February 1, 2018 16:20
-
-
Save pavel-agarkov/87ddfd9f7688eaed451e111aba54cd54 to your computer and use it in GitHub Desktop.
Conditional test files exclusion
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
... | |
<Choose> | |
<When Condition=" '$(Configuration)'!='Test' "> | |
<ItemGroup> | |
<Compile Remove="**/*.Spec.cs" /> | |
<Compile Remove="**/*.Stub.cs" /> | |
<Compile Remove="**/*.Stubs.cs" /> | |
<Compile Remove="**/*.Test.cs" /> | |
<Compile Remove="**/*.Tests.cs" /> | |
</ItemGroup> | |
</When> | |
</Choose> | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment