MCPcopy Create free account
hub / github.com/Kitware/CMake / WriteDotNetDocumentationFile

Method WriteDotNetDocumentationFile

Source/cmVisualStudio10TargetGenerator.cxx:1237–1248  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1235}
1236
1237void cmVisualStudio10TargetGenerator::WriteDotNetDocumentationFile(Elem& e0)
1238{
1239 std::string const& documentationFile =
1240 this->GeneratorTarget->GetSafeProperty("VS_DOTNET_DOCUMENTATION_FILE");
1241
1242 if (this->ProjectType == VsProjectType::csproj &&
1243 !documentationFile.empty()) {
1244 Elem e1(e0, "PropertyGroup");
1245 Elem e2(e1, "DocumentationFile");
1246 e2.Content(documentationFile);
1247 }
1248}
1249
1250void cmVisualStudio10TargetGenerator::WriteEmbeddedResourceGroup(Elem& e0)
1251{

Callers 2

Calls 2

emptyMethod · 0.45
ContentMethod · 0.45

Tested by

no test coverage detected