diff options
author | Quentin Berthet <qberthet@siradel.com> | 2022-12-06 14:27:04 (GMT) |
---|---|---|
committer | Quentin Berthet <qberthet@siradel.com> | 2022-12-06 14:42:23 (GMT) |
commit | c445dd27979322b5ac6d144c7307554bb9228317 (patch) | |
tree | a892b0724d063cf3c7fa7e447b9fdf639913a3e3 /Source/cmVisualStudio10TargetGenerator.cxx | |
parent | 7ea665b74da322e96dd3e7f90075143c2957728c (diff) | |
download | CMake-c445dd27979322b5ac6d144c7307554bb9228317.zip CMake-c445dd27979322b5ac6d144c7307554bb9228317.tar.gz CMake-c445dd27979322b5ac6d144c7307554bb9228317.tar.bz2 |
VS: Add Xaml and Resx files to .Net SDK style projects
Improve parity with classic MSBuild projects.
Fixes: #23415
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.cxx')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index ef4bcf8..f5396f4 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -991,6 +991,8 @@ void cmVisualStudio10TargetGenerator::WriteSdkStyleProjectFile( this->WriteDotNetDocumentationFile(e0); this->WriteAllSources(e0); + this->WriteEmbeddedResourceGroup(e0); + this->WriteXamlFilesGroup(e0); this->WriteDotNetReferences(e0); this->WritePackageReferences(e0); this->WriteProjectReferences(e0); |