Skip to content
This repository was archived by the owner on Dec 18, 2017. It is now read-only.

Commit 0791d66

Browse files
author
Cesar Blum Silveira
committedOct 20, 2015
Escape non-printable characters in assembly info.
1 parent d420424 commit 0791d66

File tree

2 files changed

+21
-9
lines changed

2 files changed

+21
-9
lines changed
 

‎misc/AssemblyInfo/src/Test/project.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"title": "Hello title",
3-
"description": "Hello description",
3+
"description": "Hello\r\ndescription",
44
"language": "en",
5-
"copyright": "Hello copyright",
5+
"copyright": "Copyright \u00a9",
66
"version": "1.2.3-*",
77
"commands": {
88
"HelloWorld": "HelloWorld"

‎src/Microsoft.Dnx.Compilation.CSharp/RoslynCompiler.cs

+19-7
Original file line numberDiff line numberDiff line change
@@ -245,12 +245,12 @@ private static CSharpCompilation ApplyProjectInfo(CSharpCompilation compilation,
245245
{
246246
var projectAttributes = new Dictionary<string, string>(StringComparer.Ordinal)
247247
{
248-
[typeof(System.Reflection.AssemblyTitleAttribute).FullName] = project.Title,
249-
[typeof(System.Reflection.AssemblyDescriptionAttribute).FullName] = project.Description,
250-
[typeof(System.Reflection.AssemblyCopyrightAttribute).FullName] = project.Copyright,
251-
[typeof(System.Reflection.AssemblyFileVersionAttribute).FullName] = project.AssemblyFileVersion.ToString(),
252-
[typeof(System.Reflection.AssemblyVersionAttribute).FullName] = RemovePrereleaseTag(project.Version),
253-
[typeof(System.Reflection.AssemblyInformationalVersionAttribute).FullName] = project.Version
248+
[typeof(AssemblyTitleAttribute).FullName] = EscapeCharacters(project.Title),
249+
[typeof(AssemblyDescriptionAttribute).FullName] = EscapeCharacters(project.Description),
250+
[typeof(AssemblyCopyrightAttribute).FullName] = EscapeCharacters(project.Copyright),
251+
[typeof(AssemblyFileVersionAttribute).FullName] = EscapeCharacters(project.AssemblyFileVersion.ToString()),
252+
[typeof(AssemblyVersionAttribute).FullName] = EscapeCharacters(RemovePrereleaseTag(project.Version)),
253+
[typeof(AssemblyInformationalVersionAttribute).FullName] = EscapeCharacters(project.Version)
254254
};
255255

256256
var assemblyAttributes = compilation.Assembly.GetAttributes()
@@ -263,7 +263,9 @@ private static CSharpCompilation ApplyProjectInfo(CSharpCompilation compilation,
263263
{
264264
compilation = compilation.AddSyntaxTrees(new[]
265265
{
266-
CSharpSyntaxTree.ParseText(newAttributes, parseOptions)
266+
CSharpSyntaxTree.ParseText(newAttributes, parseOptions,
267+
path: $"{nameof(ApplyProjectInfo)}.cs",
268+
encoding: Encoding.UTF8)
267269
});
268270
}
269271

@@ -272,6 +274,11 @@ private static CSharpCompilation ApplyProjectInfo(CSharpCompilation compilation,
272274

273275
private static string RemovePrereleaseTag(string version)
274276
{
277+
if (version == null)
278+
{
279+
return null;
280+
}
281+
275282
// Simple reparse of the version string (because we don't want to pull in NuGet stuff
276283
// here because we're in an old-runtime/new-runtime limbo)
277284

@@ -286,6 +293,11 @@ private static string RemovePrereleaseTag(string version)
286293
}
287294
}
288295

296+
private static string EscapeCharacters(string str)
297+
{
298+
return str != null ? SymbolDisplay.FormatLiteral(str, quote: false) : null;
299+
}
300+
289301
private IList<SyntaxTree> GetSyntaxTrees(CompilationProjectContext project,
290302
IEnumerable<string> sourceFiles,
291303
IEnumerable<ISourceReference> sourceReferences,

0 commit comments

Comments
 (0)
This repository has been archived.