Browse Source

The attribute "embeddedSourceLength" doesn't seem to be part of XML element any more

pull/2276/head
Christoph Wille 4 years ago
parent
commit
08de8416f5
  1. 2
      ICSharpCode.Decompiler.Tests/PdbGenerationTestRunner.cs

2
ICSharpCode.Decompiler.Tests/PdbGenerationTestRunner.cs

@ -93,7 +93,7 @@ namespace ICSharpCode.Decompiler.Tests @@ -93,7 +93,7 @@ namespace ICSharpCode.Decompiler.Tests
foreach (var file in document.Descendants("file"))
{
file.Attribute("checksum").Remove();
file.Attribute("embeddedSourceLength").Remove();
file.Attribute("embeddedSourceLength")?.Remove();
file.ReplaceNodes(new XCData(file.Value.Replace("\uFEFF", "")));
}
document.Save(fileName, SaveOptions.None);

Loading…
Cancel
Save