diff options
| author | Phoebe <20694052+PhoebeHui@users.noreply.github.com> | 2020-08-06 04:03:02 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-05 13:03:02 -0700 |
| commit | 6659efca6a6294da5c56e33365becfd69f98ea3f (patch) | |
| tree | 093b043468ba6ebf15ce7582fb638ac5f69ce0f9 | |
| parent | 4fef7fe7ec80aa0a095544f1469c9a4f05125719 (diff) | |
| download | vcpkg-6659efca6a6294da5c56e33365becfd69f98ea3f.tar.gz vcpkg-6659efca6a6294da5c56e33365becfd69f98ea3f.zip | |
[msbuild] Revert the importance to Normal (#12727)
| -rw-r--r-- | scripts/buildsystems/msbuild/vcpkg.targets | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/buildsystems/msbuild/vcpkg.targets b/scripts/buildsystems/msbuild/vcpkg.targets index e27fd39f9..c43837e53 100644 --- a/scripts/buildsystems/msbuild/vcpkg.targets +++ b/scripts/buildsystems/msbuild/vcpkg.targets @@ -91,8 +91,8 @@ </Target> <Target Name="VcpkgTripletSelection" BeforeTargets="ClCompile"> - <Message Text="Using triplet "$(VcpkgTriplet)" from "$(VcpkgCurrentInstalledDir)"" Importance="High" Condition="'$(VcpkgEnabled)' == 'true'"/> - <Message Text="Not using Vcpkg because VcpkgEnabled is "$(VcpkgEnabled)"" Importance="High" Condition="'$(VcpkgEnabled)' != 'true'"/> + <Message Text="Using triplet "$(VcpkgTriplet)" from "$(VcpkgCurrentInstalledDir)"" Importance="Normal" Condition="'$(VcpkgEnabled)' == 'true'"/> + <Message Text="Not using Vcpkg because VcpkgEnabled is "$(VcpkgEnabled)"" Importance="Normal" Condition="'$(VcpkgEnabled)' != 'true'"/> <Message Text="Vcpkg is unable to link because we cannot decide between Release and Debug libraries. Please define the property VcpkgConfiguration to be 'Release' or 'Debug' (currently '$(VcpkgConfiguration)')." Importance="High" Condition="'$(VcpkgEnabled)' == 'true' and '$(VcpkgNormalizedConfiguration)' == ''"/> </Target> |
