diff options
author | Rob Mensching <rob@firegiant.com> | 2022-10-02 19:27:12 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-10-04 10:44:49 -0700 |
commit | e901e04cfb8f1b759903f41b5c8f2f91e3f877aa (patch) | |
tree | 9b5c63e97f719c6c50820435154461c68c9b1b1a | |
parent | 15e332b88cb473d911cb268580400728014dd01b (diff) | |
download | wix-e901e04cfb8f1b759903f41b5c8f2f91e3f877aa.tar.gz wix-e901e04cfb8f1b759903f41b5c8f2f91e3f877aa.tar.bz2 wix-e901e04cfb8f1b759903f41b5c8f2f91e3f877aa.zip |
Incremental linking is not supported by C++/CLI
-rw-r--r-- | src/Directory.vcxproj.props | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Directory.vcxproj.props b/src/Directory.vcxproj.props index 0efe2cbb..9064973d 100644 --- a/src/Directory.vcxproj.props +++ b/src/Directory.vcxproj.props | |||
@@ -19,6 +19,9 @@ | |||
19 | <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers> | 19 | <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers> |
20 | <NuGetTargetMoniker>native,Version=v0.0</NuGetTargetMoniker> | 20 | <NuGetTargetMoniker>native,Version=v0.0</NuGetTargetMoniker> |
21 | </PropertyGroup> | 21 | </PropertyGroup> |
22 | <PropertyGroup Condition=" '$(CLRSupport)'=='true' "> | ||
23 | <LinkIncremental>false</LinkIncremental> | ||
24 | </PropertyGroup> | ||
22 | 25 | ||
23 | <PropertyGroup> | 26 | <PropertyGroup> |
24 | <CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)CustomizedNativeRecommendedRules.ruleset</CodeAnalysisRuleSet> | 27 | <CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)CustomizedNativeRecommendedRules.ruleset</CodeAnalysisRuleSet> |