Browse Source

#2128: Fix formatting issues

pull/2134/head
Siegfried Pammer 5 years ago
parent
commit
26617c855a
  1. 4
      ICSharpCode.Decompiler.Tests/TestCases/Pretty/TupleTests.cs
  2. 2
      ICSharpCode.Decompiler/Properties/AssemblyInfo.template.cs

4
ICSharpCode.Decompiler.Tests/TestCases/Pretty/TupleTests.cs

@ -92,10 +92,14 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty @@ -92,10 +92,14 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
public (int, int) AccessRest => (1, 2, 3, 4, 5, 6, 7, 8, 9).Rest;
public (string, object, Action) TargetTyping => (null, 1, delegate {
#pragma warning disable format
});
#pragma warning restore format
public object NotTargetTyping => ((string)null, (object)1, (Action)delegate {
#pragma warning disable format
});
#pragma warning restore format
public void UnnamedTupleOut(out (int, string, Action, dynamic) tuple)
{

2
ICSharpCode.Decompiler/Properties/AssemblyInfo.template.cs

@ -1,9 +1,9 @@ @@ -1,9 +1,9 @@
#region Using directives
using System.Diagnostics.CodeAnalysis;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Diagnostics.CodeAnalysis;
#endregion

Loading…
Cancel
Save