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 ea39c87 commit 12cc679Copy full SHA for 12cc679
Misc/NEWS.d/next/Windows/2023-10-06-14-20-14.gh-issue-110437.xpYy9q.rst
@@ -0,0 +1,2 @@
1
+Allows overriding the source of VC redistributables so that releases can be
2
+guaranteed to never downgrade between updates.
PCbuild/pyproject.props
@@ -233,7 +233,10 @@ public override bool Execute() {
233
</Target>
234
235
<Target Name="FindVCRuntime" Returns="VCRuntimeDLL" DependsOnTargets="FindVCRedistDir">
236
- <ItemGroup Condition="$(VCInstallDir) != ''">
+ <ItemGroup Condition="$(VCRuntimeDLL) != ''">
237
+ <VCRuntimeDLL Include="$(VCRuntimeDLL)" />
238
+ </ItemGroup>
239
+ <ItemGroup Condition="$(VCInstallDir) != '' and $(VCRuntimeDLL) == ''">
240
<VCRuntimeDLL Include="$(VCRedistDir)\Microsoft.VC*.CRT\vcruntime*.dll" />
241
</ItemGroup>
242
0 commit comments