We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7baecd commit 44c992cCopy full SHA for 44c992c
.github/actions/setup-build/action.yml
@@ -46,6 +46,10 @@ runs:
46
}
47
48
49
+ # Validate the MSVC version input.
50
+ # If specified, it is expected to have a format "major.minor", without the build and
51
+ # revision numbers. When a value such as "14.42" is parsed as a `System.Version`, the build
52
+ # and revision numbers in that object are set to -1.
53
$MSVCVersion = "${{ inputs.msvc-version }}"
54
if ($MSVCVersion -ne "") {
55
$ParsedMSVCVersion = [System.Version]::Parse($MSVCVersion)
0 commit comments