Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix version comparison and use built-in property
The existing code would always fail the comparison becuase it was not done numerically, but as a string, resulting in 16.10 being smaller than 16.8. We fix it by parsing the full `MSBuildVersion` as a vesion instead, and comparing it to the minimum version (16.8) also parsed as a `Version` object. Fixes #36
- Loading branch information