Created
March 18, 2017 18:25
-
-
Save attilah/507ea47c3fac3b78d1992c9f29268638 to your computer and use it in GitHub Desktop.
Common props with conditions
This file contains 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
<Project> | |
<PropertyGroup Condition=" '$(ABC)'=='true' "> | |
<OutputType>Exe</OutputType> | |
</PropertyGroup> | |
</Project> |
This file contains 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
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFramework>net461</TargetFramework> | |
<ABC>true</ABC> | |
</PropertyGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If SDK would support this, it would be the best thing: