Skip to content

Commit 3b07933

Browse files
Merge pull request #1033 from WildGums/GitHubSync/20251125-223023
GitHubSync update
2 parents 8269e91 + c18c502 commit 3b07933

File tree

3 files changed

+12
-17
lines changed

3 files changed

+12
-17
lines changed

deployment/cake/generic-variables.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#l "buildserver.cake"
22

33
#tool "nuget:?package=GitVersion.CommandLine&version=5.12.0"
4-
#tool "nuget:?package=NuGet.CommandLine&version=7.0.0"
4+
#tool "nuget:?package=NuGet.CommandLine&version=7.0.1"
55

66
//-------------------------------------------------------------
77

deployment/cake/lib-signing.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#tool "dotnet:?package=AzureSignTool&version=7.0.0"
1+
#tool "dotnet:?package=AzureSignTool&version=7.0.1"
22
#tool "dotnet:?package=NuGetKeyVaultSignTool&version=3.2.3"
33

44
private static string _signToolFileName;

src/GlobalSuppressions.cs

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
1-

2-
// This file is used by Code Analysis to maintain SuppressMessage
3-
// attributes that are applied to this project.
4-
// Project-level suppressions either have no target or are given
5-
// a specific target and scoped to a namespace, type, member, etc.
6-
7-
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("WpfAnalyzers.DependencyProperties", "WPF1010:Property '[property]' must notify when value changes.", Justification = "Don't enforce this")]
8-
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("WpfAnalyzers.DependencyProperties", "WPF1011:Implement INotifyPropertyChanged.", Justification = "Don't enforce this")]
9-
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("WpfAnalyzers.DependencyProperties", "WPF1013:Use [CallerMemberName].", Justification = "Don't enforce this, base class doesn't neccessarily support this")]
10-
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("WpfAnalyzers.PropertyChanged", "WPF1014:Don't raise PropertyChanged for missing property.", Justification = "<Pending>")]
11-
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("IDisposableAnalyzers.Correctness", "IDISP004:Don't ignore created IDisposable.", Justification = "<Pending>")]
12-
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("IDisposableAnalyzers.Correctness", "IDISP001:Dispose created.", Justification = "<Pending>")]
13-
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("IDisposableAnalyzers.Correctness", "IDISP008:Don't assign member with injected and created disposables.", Justification = "<Pending>")]
14-
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("IDisposableAnalyzers.Correctness", "IDISP006:Implement IDisposable", Justification = "<Pending>")]
15-
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("IDisposableAnalyzers.Correctness", "IDISP003:Dispose previous before re-assigning", Justification = "<Pending>")]
1+
using System.Diagnostics.CodeAnalysis;
2+
3+
// This file is used by Code Analysis to maintain SuppressMessage
4+
// attributes that are applied to this project.
5+
// Project-level suppressions either have no target or are given
6+
// a specific target and scoped to a namespace, type, member, etc.
7+
8+
[assembly: SuppressMessage("WpfAnalyzers.DependencyProperties", "WPF1010:Property '[property]' must notify when value changes.", Justification = "Don't enforce this")]
9+
[assembly: SuppressMessage("WpfAnalyzers.DependencyProperties", "WPF1011:Implement INotifyPropertyChanged.", Justification = "Don't enforce this")]
10+
[assembly: SuppressMessage("Usage", "CA2255:The 'ModuleInitializer' attribute should not be used in libraries", Justification = "Used to register language resources and types", Scope = "member", Target = "~M:ModuleInitializer.Initialize")]

0 commit comments

Comments
 (0)