diff options
author | Brad King <brad.king@kitware.com> | 2022-09-27 14:25:10 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-09-27 14:25:21 (GMT) |
commit | a57e7350d58e116823a386a53333b46ac50ef590 (patch) | |
tree | ced9e671d7e81d7aa88ac8d57a7c257cd27627f5 | |
parent | bb00bf9da118b5432914ca52b3eb0a43c960375d (diff) | |
parent | 7671d71299bc9078f60f45ad25f53199791cf293 (diff) | |
download | CMake-a57e7350d58e116823a386a53333b46ac50ef590.zip CMake-a57e7350d58e116823a386a53333b46ac50ef590.tar.gz CMake-a57e7350d58e116823a386a53333b46ac50ef590.tar.bz2 |
Merge topic 'vs-dotnet-sdk-output-paths'
7671d71299 VS: Fix target output paths in SDK-style projects
Acked-by: Kitware Robot <kwrobot@kitware.com>
Tested-by: buildbot <buildbot@kitware.com>
Merge-request: !7713
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index 9b40542..44c089e 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -903,6 +903,7 @@ void cmVisualStudio10TargetGenerator::WriteSdkStyleProjectFile( // of the IDE. e1.Element("VCProjectUpgraderObjectName", "NoUpgrade"); e1.Element("ManagedAssembly", "true"); + e1.Element("AppendTargetFrameworkToOutputPath", "false"); cmValue targetFramework = this->GeneratorTarget->GetProperty("DOTNET_TARGET_FRAMEWORK"); |