File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
SG.CodeCoverage.Recorder/RecordingController Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 88
99namespace SG . CodeCoverage . Recorder . RecordingController
1010{
11- public class RunTimeConfig
11+ public class RuntimeConfig
1212 {
1313 public List < RunningProcess > Processes { get ; set ; }
1414
@@ -55,7 +55,7 @@ private void Save(string fileName)
5555 }
5656 }
5757
58- public static RunTimeConfig Load ( string fileName )
58+ public static RuntimeConfig Load ( string fileName )
5959 {
6060 List < RunningProcess > processes = new List < RunningProcess > ( ) ;
6161 using ( var reader = new StreamReader ( fileName ) )
@@ -76,7 +76,7 @@ public static RunTimeConfig Load(string fileName)
7676 }
7777 }
7878
79- var r = new RunTimeConfig ( ) { Processes = processes } ;
79+ var r = new RuntimeConfig ( ) { Processes = processes } ;
8080 r . Cleanup ( ) ;
8181 return r ;
8282 }
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public async Task StartAsync(int port)
4242 listener . Start ( ) ;
4343 this . Port = ( ( IPEndPoint ) listener . LocalEndpoint ) . Port ;
4444 _logger . LogInformation ( "Started listening on port " + this . Port + "." ) ;
45- RunTimeConfig . Update ( this . Port ) ;
45+ RuntimeConfig . Update ( this . Port ) ;
4646 try
4747 {
4848 while ( true )
You can’t perform that action at this time.
0 commit comments