/// <summary> /// Utility function for creating a VB-style manifest name from /// a resource name. Note that this function attempts to emulate the /// Everret implementation of this code which can be found by searching for /// ComputeNonWFCResourceName() or ComputeWFCResourceName() in /// \vsproject\langproj\langbldmgrsite.cpp /// </summary> /// <param name="fileName">The file name of the dependent (usually a .resx)</param> /// <param name="linkFileName">The file name of the dependent (usually a .resx)</param> /// <param name="prependCultureAsDirectory">should the culture name be prepended to the manifest name as a path</param> /// <param name="rootNamespace">The root namespace (usually from the project file). May be null</param> /// <param name="dependentUponFileName">The file name of the parent of this dependency (usually a .vb file). May be null</param> /// <param name="culture">The override culture of this resource, if any</param> /// <param name="binaryStream">File contents binary stream, may be null</param> /// <param name="log">Task's TaskLoggingHelper, for logging warnings or errors</param> /// <returns>Returns the manifest name</returns> internal static string CreateManifestNameImpl ( string fileName, string linkFileName, bool prependCultureAsDirectory, // true by default string rootNamespace, // May be null string dependentUponFileName, // May be null string culture, Stream binaryStream, // File contents binary stream, may be null TaskLoggingHelper log ) { // Use the link file name if there is one, otherwise, fall back to file name. string embeddedFileName = linkFileName; if (string.IsNullOrEmpty(embeddedFileName)) { embeddedFileName = fileName; } Culture.ItemCultureInfo info = Culture.GetItemCultureInfo(embeddedFileName, dependentUponFileName); // If the item has a culture override, respect that. if (!String.IsNullOrEmpty(culture)) { info.culture = culture; } var manifestName = new StringBuilder(); if (binaryStream != null) { // Resource depends on a form. Now, get the form's class name fully // qualified with a namespace. ExtractedClassName result = VisualBasicParserUtilities.GetFirstClassNameFullyQualified(binaryStream); if (result.IsInsideConditionalBlock) { log?.LogWarningWithCodeFromResources("CreateManifestResourceName.DefinitionFoundWithinConditionalDirective", dependentUponFileName, embeddedFileName); } if (!string.IsNullOrEmpty(result.Name)) { if (!string.IsNullOrEmpty(rootNamespace)) { manifestName.Append(rootNamespace).Append(".").Append(result.Name); } else { manifestName.Append(result.Name); } // Append the culture if there is one. if (!string.IsNullOrEmpty(info.culture)) { manifestName.Append(".").Append(info.culture); } } } // If there's no manifest name at this point, then fall back to using the // RootNamespace+Base file name if (manifestName.Length == 0) { // If Rootnamespace was null, then it wasn't set from the project resourceFile. // Empty namespaces are allowed. if (!string.IsNullOrEmpty(rootNamespace)) { manifestName.Append(rootNamespace).Append("."); } // only strip extension for .resx and .restext files string sourceExtension = Path.GetExtension(info.cultureNeutralFilename); if ( (0 == String.Compare(sourceExtension, ".resx", StringComparison.OrdinalIgnoreCase)) || (0 == String.Compare(sourceExtension, ".restext", StringComparison.OrdinalIgnoreCase)) || (0 == String.Compare(sourceExtension, ".resources", StringComparison.OrdinalIgnoreCase)) ) { manifestName.Append(Path.GetFileNameWithoutExtension(info.cultureNeutralFilename)); // Append the culture if there is one. if (!string.IsNullOrEmpty(info.culture)) { manifestName.Append(".").Append(info.culture); } // If the original extension was .resources, add it back if (String.Equals(sourceExtension, ".resources", StringComparison.OrdinalIgnoreCase)) { manifestName.Append(sourceExtension); } } else { manifestName.Append(Path.GetFileName(info.cultureNeutralFilename)); if (prependCultureAsDirectory) { // Prepend the culture as a subdirectory if there is one. if (!string.IsNullOrEmpty(info.culture)) { manifestName.Insert(0, Path.DirectorySeparatorChar); manifestName.Insert(0, info.culture); } } } } return(manifestName.ToString()); }