|
|
|
@ -61,6 +61,8 @@ namespace ICSharpCode.ILSpy.Options
@@ -61,6 +61,8 @@ namespace ICSharpCode.ILSpy.Options
|
|
|
|
|
s.ShowDebugInfo = (bool?)e.Attribute("showDebugInfo") ?? s.ShowDebugInfo; |
|
|
|
|
s.ShowXmlDocumentation = (bool?)e.Attribute("xmlDoc") ?? s.ShowXmlDocumentation; |
|
|
|
|
s.FoldBraces = (bool?)e.Attribute("foldBraces") ?? s.FoldBraces; |
|
|
|
|
s.ExpandMemberDefinitions = (bool?)e.Attribute("expandMemberDefinitions") ?? s.ExpandMemberDefinitions; |
|
|
|
|
s.RemoveDeadCode = (bool?)e.Attribute("removeDeadCode") ?? s.RemoveDeadCode; |
|
|
|
|
s.UsingDeclarations = (bool?)e.Attribute("usingDeclarations") ?? s.UsingDeclarations; |
|
|
|
|
s.FullyQualifyAmbiguousTypeNames = (bool?)e.Attribute("fullyQualifyAmbiguousTypeNames") ?? s.FullyQualifyAmbiguousTypeNames; |
|
|
|
|
s.AlwaysUseBraces = (bool?)e.Attribute("alwaysUseBraces") ?? s.AlwaysUseBraces; |
|
|
|
@ -82,7 +84,8 @@ namespace ICSharpCode.ILSpy.Options
@@ -82,7 +84,8 @@ namespace ICSharpCode.ILSpy.Options
|
|
|
|
|
section.SetAttributeValue("showDebugInfo", s.ShowDebugInfo); |
|
|
|
|
section.SetAttributeValue("xmlDoc", s.ShowXmlDocumentation); |
|
|
|
|
section.SetAttributeValue("foldBraces", s.FoldBraces); |
|
|
|
|
section.SetAttributeValue("foldBraces", s.RemoveDeadCode); |
|
|
|
|
section.SetAttributeValue("expandMemberDefinitions", s.ExpandMemberDefinitions); |
|
|
|
|
section.SetAttributeValue("removeDeadCode", s.RemoveDeadCode); |
|
|
|
|
section.SetAttributeValue("usingDeclarations", s.UsingDeclarations); |
|
|
|
|
section.SetAttributeValue("fullyQualifyAmbiguousTypeNames", s.FullyQualifyAmbiguousTypeNames); |
|
|
|
|
section.SetAttributeValue("alwaysUseBraces", s.AlwaysUseBraces); |
|
|
|
|