Skip to content

Commit 0817d6d

Browse files
committed
More line endings fixes
1 parent f03c2ef commit 0817d6d

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

tools/StaticAnalysis/AnalysisLogger.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ public virtual void WriteWarning(string format, params object[] args)
8484
/// </summary>
8585
/// <typeparam name="T">The type of records written to the log</typeparam>
8686
/// <param name="fileName">The filename (without file path) where the report will be written</param>
87-
/// <returns>The given logger. Analyzer may write records to this logger and they will be written to the report file.</returns>
87+
/// <returns>The given logger. Analyzer may write records to this logger and they will be written to
88+
/// the report file.</returns>
8889
public virtual ReportLogger<T> CreateLogger<T>(string fileName) where T : IReportRecord, new()
8990
{
9091
if (string.IsNullOrWhiteSpace(fileName))

tools/StaticAnalysis/DependencyAnalyzer/AssemblyRecord.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ public class AssemblyRecord : ICloneable
4646
public int AssemblyFileMajorVersion { get; set; }
4747

4848
/// <summary>
49-
/// The minorVersion portion of the file version for the assembly file. This may or may not match the corresponding part of
50-
/// the assembly version.
49+
/// The minorVersion portion of the file version for the assembly file. This may or may not match the corresponding
50+
/// part of the assembly version.
5151
/// </summary>
5252
public int AssemblyFileMinorVersion { get; set; }
5353

@@ -103,8 +103,8 @@ public bool Equals(AssemblyRecord record)
103103
public override string ToString()
104104
{
105105
StringBuilder output = new StringBuilder();
106-
output.AppendLine(string.Format("AssemblyName: {0}, Version:{1}, FileVersion: {2}.{3}, Location:{4}", Name, Version,
107-
AssemblyFileMajorVersion, AssemblyFileMinorVersion, Location));
106+
output.AppendLine(string.Format("AssemblyName: {0}, Version:{1}, FileVersion: {2}.{3}, Location:{4}",
107+
Name, Version, AssemblyFileMajorVersion, AssemblyFileMinorVersion, Location));
108108
if (ReferencingAssembly.Any())
109109
{
110110
output.AppendFormat("-> Parents: ({0})", string.Join(", ", ReferencingAssembly));

0 commit comments

Comments
 (0)