File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 33
44using System . Collections . Generic ;
55using System . Diagnostics . CodeAnalysis ;
6+ using System . Globalization ;
67using System . IO ;
78using System . Linq ;
89using System . Reflection ;
@@ -100,7 +101,7 @@ into groupedByModule
100101
101102 XmlElement typeCacheElement = doc . CreateElement ( "typeCache" ) ;
102103 doc . AppendChild ( typeCacheElement ) ;
103- typeCacheElement . SetAttribute ( "lastModified" , CurrentDate . ToString ( ) ) ;
104+ typeCacheElement . SetAttribute ( "lastModified" , CurrentDate . ToString ( CultureInfo . InvariantCulture ) ) ;
104105 typeCacheElement . SetAttribute ( "mvcVersionId" , _mvcVersionId . ToString ( ) ) ;
105106
106107 foreach ( var assemblyGroup in groupedByAssembly )
Original file line number Diff line number Diff line change 33
44using System . Collections . Generic ;
55using System . Diagnostics . CodeAnalysis ;
6+ using System . Globalization ;
67using System . IO ;
78using System . Linq ;
89using System . Reflection ;
@@ -95,7 +96,7 @@ into groupedByModule
9596
9697 XmlElement typeCacheElement = doc . CreateElement ( "typeCache" ) ;
9798 doc . AppendChild ( typeCacheElement ) ;
98- typeCacheElement . SetAttribute ( "lastModified" , CurrentDate . ToString ( ) ) ;
99+ typeCacheElement . SetAttribute ( "lastModified" , CurrentDate . ToString ( CultureInfo . InvariantCulture ) ) ;
99100 typeCacheElement . SetAttribute ( "mvcVersionId" , _mvcVersionId . ToString ( ) ) ;
100101
101102 foreach ( var assemblyGroup in groupedByAssembly )
You can’t perform that action at this time.
0 commit comments