Skip to content

Commit

Permalink
Update ignore filter for ApiApprover v10
Browse files Browse the repository at this point in the history
  • Loading branch information
Oren Novotny committed Dec 2, 2019
1 parent 6236121 commit dba617a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information.
// See the LICENSE file in the project root for more information.

using ApprovalTests;
using ApprovalTests.Reporters;
Expand Down Expand Up @@ -62,7 +62,7 @@ private static string Filter(string text)
.Where(l => !l.StartsWith("[assembly: AssemblyVersion("))
.Where(l => !l.StartsWith("[assembly: AssemblyFileVersion("))
.Where(l => !l.StartsWith("[assembly: AssemblyInformationalVersion("))
.Where(l => !l.StartsWith("[assembly: System.Reflection.AssemblyMetadataAttribute(\"CommitHash\""))
.Where(l => !l.StartsWith("[assembly: System.Reflection.AssemblyMetadata(\"CommitHash\""))
.Where(l => !string.IsNullOrWhiteSpace(l))
);
}
Expand Down

0 comments on commit dba617a

Please sign in to comment.