Skip to content

Instantly share code, notes, and snippets.

@nguerrera
Created April 4, 2019 01:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nguerrera/a75c94fc1bb0e828abe9efa66928bbde to your computer and use it in GitHub Desktop.
Save nguerrera/a75c94fc1bb0e828abe9efa66928bbde to your computer and use it in GitHub Desktop.
Fun with msbuild version comparison
<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