diff options
author | Steven Boswell <ulatekh@yahoo.com> | 2021-09-03 21:06:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-09-09 18:22:26 (GMT) |
commit | b284a21fee0907effe08a4314ffa725aa0c7c86e (patch) | |
tree | f46dd314bd644b685b45309a48b383ccaacddb27 /Source/cmLocalVisualStudio7Generator.cxx | |
parent | ed9abd99772cbdcb2e4dd195eb4a62104ce86c95 (diff) | |
download | CMake-b284a21fee0907effe08a4314ffa725aa0c7c86e.zip CMake-b284a21fee0907effe08a4314ffa725aa0c7c86e.tar.gz CMake-b284a21fee0907effe08a4314ffa725aa0c7c86e.tar.bz2 |
VS: Add missing label in C# project-build events
Fixes: #21440
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index 151470b..06d738f 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -566,7 +566,7 @@ public: } else { this->Stream << this->LG->EscapeForXML("\n"); } - std::string script = this->LG->ConstructScript(ccg); + std::string script = this->LG->ConstructScript(ccg, unmanaged); this->Stream << this->LG->EscapeForXML(script); } @@ -1779,7 +1779,7 @@ void cmLocalVisualStudio7Generator::WriteCustomRule( } std::string comment = this->ConstructComment(ccg); - std::string script = this->ConstructScript(ccg); + std::string script = this->ConstructScript(ccg, unmanaged); if (this->FortranProject) { cmSystemTools::ReplaceString(script, "$(Configuration)", config); } |