You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 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")]
[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>")]
[assembly:System.Diagnostics.CodeAnalysis.SuppressMessage("IDisposableAnalyzers.Correctness","IDISP008:Don't assign member with injected and created disposables.",Justification="<Pending>")]
[assembly:System.Diagnostics.CodeAnalysis.SuppressMessage("IDisposableAnalyzers.Correctness","IDISP003:Dispose previous before re-assigning",Justification="<Pending>")]
1
+
usingSystem.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")]
[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