1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-20 04:24:36 +08:00

VS: Fix VS_SDK_REFERENCES when target is not a Windows 10 app

Close the `<ItemGroup>` element whenever it is opened.
This commit is contained in:
Roc Ramon
2017-08-21 09:08:37 -04:00
committed by Brad King
parent fa664d9863
commit efd0c01337

View File

@@ -3698,10 +3698,10 @@ void cmVisualStudio10TargetGenerator::WriteSDKReferences()
this->WriteSingleSDKReference("WindowsIoT", iotExtensionsVersion);
}
}
}
if (hasWrittenItemGroup) {
this->WriteString("</ItemGroup>\n", 1);
}
if (hasWrittenItemGroup) {
this->WriteString("</ItemGroup>\n", 1);
}
}