File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22<Project >
33 <PropertyGroup >
44 <NoWarn >CA1822;CS1591;CS0649;xUnit1026;xUnit1013;CS1573;VerifyTestsProjectDir;VerifySetParameters;PolyFillTargetsForNuget;xUnit1051;NU1608;NU1109</NoWarn >
5- <Version >31.9.2 </Version >
5+ <Version >31.9.3 </Version >
66 <ImplicitUsings >enable</ImplicitUsings >
77 <LangVersion >preview</LangVersion >
88 <AssemblyVersion >1.0.0</AssemblyVersion >
Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ static async Task Append(string command)
7777 return ;
7878 }
7979
80+ #pragma warning disable CS0618 // Type or member is obsolete
8081 if ( DiffEngineTray . IsRunning )
8182 {
8283 return ;
@@ -94,4 +95,4 @@ static async Task Append(string command)
9495 semaphore . Release ( ) ;
9596 }
9697 }
97- }
98+ }
Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ async Task<bool> ProcessDeletes(string file)
203203 return true ;
204204 }
205205
206- await DiffEngineTray . AddDeleteAsync ( file ) ;
206+ await DiffRunner . AddDeleteAsync ( file ) ;
207207
208208 return false ;
209209 }
@@ -290,4 +290,4 @@ static void AcceptChanges(in FilePair file)
290290 File . Delete ( file . VerifiedPath ) ;
291291 File . Move ( file . ReceivedPath , file . VerifiedPath ) ;
292292 }
293- }
293+ }
You can’t perform that action at this time.
0 commit comments