Created
April 4, 2019 01:00
-
-
Save nguerrera/a75c94fc1bb0e828abe9efa66928bbde to your computer and use it in GitHub Desktop.
Fun with msbuild version comparison
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
<Project> | |
<Target Name="Demo"> | |
<Message Condition="4.5.10 > 4.5.9" Text=":) Yay, 3 parts work!" Importance="High" /> | |
<Message Condition="2.9 > 2.10" Text=":( Wait, those are version numbers!" Importance="High" /> | |
</Target> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment