Skip to content

Commit 95d5749

Browse files
committed
1 parent 44a701f commit 95d5749

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.globalconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1250,7 +1250,7 @@ dotnet_diagnostic.SA1210.severity = none
12501250
dotnet_diagnostic.SA1211.severity = none
12511251

12521252
# SA1212: Property accessors should follow order
1253-
dotnet_diagnostic.SA1212.severity = none
1253+
dotnet_diagnostic.SA1212.severity = warning
12541254

12551255
# SA1213: Event accessors should follow order
12561256
dotnet_diagnostic.SA1213.severity = none

src/System.Management.Automation/engine/remoting/common/throttlemanager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -675,9 +675,9 @@ internal class Operation : IThrottleOperation
675675
private Thread workerThreadStart;
676676
private Thread workerThreadStop;
677677

678-
public bool Done { set; get; }
678+
public bool Done { get; set; }
679679

680-
public int SleepTime { set; get; } = 100;
680+
public int SleepTime { get; set; } = 100;
681681

682682
private void WorkerThreadMethodStart()
683683
{

0 commit comments

Comments
 (0)