@@ -245,12 +245,12 @@ private static CSharpCompilation ApplyProjectInfo(CSharpCompilation compilation,
245
245
{
246
246
var projectAttributes = new Dictionary < string , string > ( StringComparer . Ordinal )
247
247
{
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 )
254
254
} ;
255
255
256
256
var assemblyAttributes = compilation . Assembly . GetAttributes ( )
@@ -263,7 +263,9 @@ private static CSharpCompilation ApplyProjectInfo(CSharpCompilation compilation,
263
263
{
264
264
compilation = compilation . AddSyntaxTrees ( new [ ]
265
265
{
266
- CSharpSyntaxTree . ParseText ( newAttributes , parseOptions )
266
+ CSharpSyntaxTree . ParseText ( newAttributes , parseOptions ,
267
+ path : $ "{ nameof ( ApplyProjectInfo ) } .cs",
268
+ encoding : Encoding . UTF8 )
267
269
} ) ;
268
270
}
269
271
@@ -272,6 +274,11 @@ private static CSharpCompilation ApplyProjectInfo(CSharpCompilation compilation,
272
274
273
275
private static string RemovePrereleaseTag ( string version )
274
276
{
277
+ if ( version == null )
278
+ {
279
+ return null ;
280
+ }
281
+
275
282
// Simple reparse of the version string (because we don't want to pull in NuGet stuff
276
283
// here because we're in an old-runtime/new-runtime limbo)
277
284
@@ -286,6 +293,11 @@ private static string RemovePrereleaseTag(string version)
286
293
}
287
294
}
288
295
296
+ private static string EscapeCharacters ( string str )
297
+ {
298
+ return str != null ? SymbolDisplay . FormatLiteral ( str , quote : false ) : null ;
299
+ }
300
+
289
301
private IList < SyntaxTree > GetSyntaxTrees ( CompilationProjectContext project ,
290
302
IEnumerable < string > sourceFiles ,
291
303
IEnumerable < ISourceReference > sourceReferences ,
0 commit comments