Skip to content

Commit 7c357ec

Browse files
committed
Fix imports ordering and file encoding
1 parent ce10620 commit 7c357ec

File tree

18 files changed

+41
-46
lines changed

18 files changed

+41
-46
lines changed

QRCoder.Xaml/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System.Reflection;
2-
using System.Runtime.CompilerServices;
1+
using System.Reflection;
32
using System.Runtime.InteropServices;
43

54
// Allgemeine Informationen über eine Assembly werden über die folgenden

QRCoder/PayloadGenerator.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
42
using System.Globalization;
3+
using System.Linq;
54
using System.Text;
65
using System.Text.RegularExpressions;
7-
using System.Diagnostics.CodeAnalysis;
86
#if NETSTANDARD1_3
97
using System.Reflection;
108
#endif

QRCoder/PayloadGenerator/BitcoinLikeCryptoCurrencyAddress.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Collections.Generic;
3-
using System.Linq;
43
using System.Globalization;
4+
using System.Linq;
55

66
namespace QRCoder;
77

QRCoder/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System.Reflection;
2-
using System.Runtime.CompilerServices;
1+
using System.Reflection;
32
using System.Runtime.InteropServices;
43

54
// Allgemeine Informationen über eine Assembly werden über die folgenden

QRCoder/SvgQRCode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#if !NETSTANDARD1_3
2-
using QRCoder.Extensions;
32
using System;
43
using System.Collections;
54
using System.Collections.Generic;
65
using System.Drawing;
76
using System.Text;
87
using System.Text.RegularExpressions;
8+
using QRCoder.Extensions;
99
using static QRCoder.QRCodeGenerator;
1010
using static QRCoder.SvgQRCode;
1111

QRCoderApiTests/ApiApprovalTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
using PublicApiGenerator;
2-
using Shouldly;
31
using System;
42
using System.Diagnostics;
53
using System.IO;
64
using System.Linq;
75
using System.Reflection;
86
using System.Xml.Linq;
7+
using PublicApiGenerator;
8+
using Shouldly;
99
using Xunit;
1010

1111
/*********************************************

QRCoderBenchmarks/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
using BenchmarkDotNet.Running;
1+
using BenchmarkDotNet.Running;
22

33
BenchmarkRunner.Run(typeof(Program).Assembly);

QRCoderConsole/Program.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
using System;
22
using System.Drawing.Imaging;
33
using System.IO;
4-
using NDesk.Options;
5-
using QRCoderConsole.DataObjects;
6-
using QRCoder;
74
using System.Text;
85
using System.Windows.Markup;
6+
using NDesk.Options;
7+
using QRCoder;
8+
using QRCoderConsole.DataObjects;
99

1010
namespace QRCoderConsole;
1111

QRCoderDemo/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System.Reflection;
2-
using System.Runtime.CompilerServices;
1+
using System.Reflection;
32
using System.Runtime.InteropServices;
43

54
// Allgemeine Informationen über eine Assembly werden über die folgenden

QRCoderTests/ArtQRCodeRendererTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#if SYSTEM_DRAWING
22

3-
using Xunit;
4-
using QRCoder;
5-
using Shouldly;
63
using System.Drawing;
7-
using QRCoderTests.Helpers.XUnitExtenstions;
4+
using QRCoder;
85
using QRCoderTests.Helpers;
6+
using QRCoderTests.Helpers.XUnitExtenstions;
7+
using Shouldly;
8+
using Xunit;
99

1010
namespace QRCoderTests;
1111

0 commit comments

Comments
 (0)