| 1235 | } |
| 1236 | |
| 1237 | void 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 | |
| 1250 | void cmVisualStudio10TargetGenerator::WriteEmbeddedResourceGroup(Elem& e0) |
| 1251 | { |
no test coverage detected