Skip to content

Commit 3141981

Browse files
authored
Use - as separator for consistency with Crossgen2
1 parent 8c987b5 commit 3141981

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Compilers/Core/Portable/NativePdbWriter/PdbWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ public void WriteCompilerVersion(string language)
775775
var compilerAssembly = typeof(Compilation).Assembly;
776776
var fileVersion = Version.Parse(compilerAssembly.GetCustomAttribute<AssemblyFileVersionAttribute>().Version);
777777
var versionString = compilerAssembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>().InformationalVersion;
778-
_symWriter.AddCompilerInfo((ushort)fileVersion.Major, (ushort)fileVersion.Minor, (ushort)fileVersion.Build, (ushort)fileVersion.Revision, $"{language}: {versionString}");
778+
_symWriter.AddCompilerInfo((ushort)fileVersion.Major, (ushort)fileVersion.Minor, (ushort)fileVersion.Build, (ushort)fileVersion.Revision, $"{language} - {versionString}");
779779
}
780780
}
781781
}

0 commit comments

Comments
 (0)