Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .globalconfig
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ dotnet_diagnostic.CA2207.severity = warning
dotnet_diagnostic.CA2208.severity = suggestion

# CA2211: Non-constant fields should not be visible
dotnet_diagnostic.CA2211.severity = suggestion
dotnet_diagnostic.CA2211.severity = warning

# CA2213: Disposable fields should be disposed
dotnet_diagnostic.CA2213.severity = none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ public sealed class PSSessionConfigurationData
{
/// <summary>
/// </summary>
#pragma warning disable CA2211 // Non-constant fields should not be visible
public static bool IsServerManager;
#pragma warning restore CA2211 // Non-constant fields should not be visible

#region Public Properties

Expand Down