/// <summary> /// Returns the id and name of the assembly that would be created from the received id. /// </summary> public static (string id, string name) ComputeSanitizedAssemblyInfo(string id) { var assembly = new AssemblyInfo(id, string.Empty); return(assembly.Id, assembly.Name); }