Skip to content
This repository was archived by the owner on Nov 8, 2018. It is now read-only.

Commit 26d7692

Browse files
committed
Fix SA1028: Code must not contain trailing whitespace
1 parent 7882beb commit 26d7692

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

AsyncUsageAnalyzers/AsyncUsageAnalyzers.CodeFixes/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Runtime.CompilerServices;
88
using System.Runtime.InteropServices;
99

10-
// General Information about an assembly is controlled through the following
10+
// General Information about an assembly is controlled through the following
1111
// set of attributes. Change these attribute values to modify the information
1212
// associated with an assembly.
1313
[assembly: AssemblyTitle("AsyncUsageAnalyzers.CodeFixes")]
@@ -21,19 +21,19 @@
2121
[assembly: CLSCompliant(false)]
2222
[assembly: NeutralResourcesLanguage("en-US")]
2323

24-
// Setting ComVisible to false makes the types in this assembly not visible
25-
// to COM components. If you need to access a type in this assembly from
24+
// Setting ComVisible to false makes the types in this assembly not visible
25+
// to COM components. If you need to access a type in this assembly from
2626
// COM, set the ComVisible attribute to true on that type.
2727
[assembly: ComVisible(false)]
2828

2929
// Version information for an assembly consists of the following four values:
3030
//
3131
// Major Version
32-
// Minor Version
32+
// Minor Version
3333
// Build Number
3434
// Revision
3535
//
36-
// You can specify all the values or you can default the Build and Revision Numbers
36+
// You can specify all the values or you can default the Build and Revision Numbers
3737
// by using the '*' as shown below:
3838
[assembly: AssemblyVersion("1.0.0.0")]
3939
[assembly: AssemblyFileVersion("1.0.0.0")]

AsyncUsageAnalyzers/AsyncUsageAnalyzers.Test/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Reflection;
66
using System.Runtime.InteropServices;
77

8-
// General Information about an assembly is controlled through the following
8+
// General Information about an assembly is controlled through the following
99
// set of attributes. Change these attribute values to modify the information
1010
// associated with an assembly.
1111
[assembly: AssemblyTitle("AsyncUsageAnalyzers.Test")]
@@ -18,19 +18,19 @@
1818
[assembly: AssemblyCulture("")]
1919
[assembly: CLSCompliant(false)]
2020

21-
// Setting ComVisible to false makes the types in this assembly not visible
22-
// to COM components. If you need to access a type in this assembly from
21+
// Setting ComVisible to false makes the types in this assembly not visible
22+
// to COM components. If you need to access a type in this assembly from
2323
// COM, set the ComVisible attribute to true on that type.
2424
[assembly: ComVisible(false)]
2525

2626
// Version information for an assembly consists of the following four values:
2727
//
2828
// Major Version
29-
// Minor Version
29+
// Minor Version
3030
// Build Number
3131
// Revision
3232
//
33-
// You can specify all the values or you can default the Build and Revision Numbers
33+
// You can specify all the values or you can default the Build and Revision Numbers
3434
// by using the '*' as shown below:
3535
// [assembly: AssemblyVersion("1.0.*")]
3636
[assembly: AssemblyVersion("1.0.0.0")]

AsyncUsageAnalyzers/AsyncUsageAnalyzers/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Runtime.CompilerServices;
88
using System.Runtime.InteropServices;
99

10-
// General Information about an assembly is controlled through the following
10+
// General Information about an assembly is controlled through the following
1111
// set of attributes. Change these attribute values to modify the information
1212
// associated with an assembly.
1313
[assembly: AssemblyTitle("AsyncUsageAnalyzers")]
@@ -21,19 +21,19 @@
2121
[assembly: CLSCompliant(false)]
2222
[assembly: NeutralResourcesLanguage("en-US")]
2323

24-
// Setting ComVisible to false makes the types in this assembly not visible
25-
// to COM components. If you need to access a type in this assembly from
24+
// Setting ComVisible to false makes the types in this assembly not visible
25+
// to COM components. If you need to access a type in this assembly from
2626
// COM, set the ComVisible attribute to true on that type.
2727
[assembly: ComVisible(false)]
2828

2929
// Version information for an assembly consists of the following four values:
3030
//
3131
// Major Version
32-
// Minor Version
32+
// Minor Version
3333
// Build Number
3434
// Revision
3535
//
36-
// You can specify all the values or you can default the Build and Revision Numbers
36+
// You can specify all the values or you can default the Build and Revision Numbers
3737
// by using the '*' as shown below:
3838
[assembly: AssemblyVersion("1.0.0.0")]
3939
[assembly: AssemblyFileVersion("1.0.0.0")]

0 commit comments

Comments
 (0)