Skip to content
Snippets Groups Projects
Unverified Commit 49526080 authored by Miss Islington (bot)'s avatar Miss Islington (bot) Committed by GitHub
Browse files

gh-92984: Explicitly disable incremental linking for Windows Release and PGO builds (GH-92985)


(cherry picked from commit 38feffa0)

Co-authored-by: default avatarDavid Machaj <46852402+dmachaj@users.noreply.github.com>
parent c1465258
Branches
Tags
No related merge requests found
Explicitly disable incremental linking for non-Debug builds
......@@ -18,6 +18,7 @@
<SupportSigning Condition="'$(SupportSigning)' == ''">true</SupportSigning>
<SupportSigning Condition="'$(Configuration)' == 'Debug'">false</SupportSigning>
<SupportSigning Condition="'$(ConfigurationType)' == 'StaticLibrary'">false</SupportSigning>
<LinkIncremental Condition="$(Configuration) != 'Debug'">false</LinkIncremental>
</PropertyGroup>
<PropertyGroup>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment