File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 6
6
<CentralPackageTransitivePinningEnabled >true</CentralPackageTransitivePinningEnabled >
7
7
<MessagePackVersion >2.5.192</MessagePackVersion >
8
8
<MicroBuildVersion >2.0.187</MicroBuildVersion >
9
- <VisualStudioThreadingVersion >17.13.2 </VisualStudioThreadingVersion >
9
+ <VisualStudioThreadingVersion >17.13.61 </VisualStudioThreadingVersion >
10
10
<CodeAnalysisAnalyzerVersion >3.11.0-beta1.24629.2</CodeAnalysisAnalyzerVersion >
11
11
</PropertyGroup >
12
12
<ItemGroup >
18
18
<PackageVersion Include =" Microsoft.Bcl.AsyncInterfaces" Version =" 8.0.0" />
19
19
<PackageVersion Include =" Microsoft.CodeAnalysis.PublicApiAnalyzers" Version =" $(CodeAnalysisAnalyzerVersion)" />
20
20
<PackageVersion Include =" Microsoft.VisualStudio.Threading.Analyzers" Version =" $(VisualStudioThreadingVersion)" />
21
+ <PackageVersion Include =" Microsoft.VisualStudio.Threading.Only" Version =" $(VisualStudioThreadingVersion)" />
21
22
<PackageVersion Include =" Microsoft.VisualStudio.Threading" Version =" $(VisualStudioThreadingVersion)" />
22
23
<PackageVersion Include =" Microsoft.VisualStudio.Validation" Version =" 17.8.8" />
23
- <PackageVersion Include =" Nerdbank.Streams" Version =" 2.11.79 " />
24
+ <PackageVersion Include =" Nerdbank.Streams" Version =" 2.11.90 " />
24
25
<PackageVersion Include =" Newtonsoft.Json" Version =" 13.0.3" />
25
26
<PackageVersion Include =" System.Collections.Immutable" Version =" 8.0.0" />
26
27
<PackageVersion Include =" System.Diagnostics.DiagnosticSource" Version =" 8.0.1" />
Original file line number Diff line number Diff line change 15
15
<ItemGroup >
16
16
<PackageReference Include =" MessagePack" />
17
17
<PackageReference Include =" MessagePackAnalyzer" PrivateAssets =" all" />
18
- <PackageReference Include =" Microsoft.VisualStudio.Threading" />
18
+ <PackageReference Include =" Microsoft.VisualStudio.Threading.Analyzers" PrivateAssets =" all" />
19
+ <PackageReference Include =" Microsoft.VisualStudio.Threading.Only" />
19
20
<PackageReference Include =" Nerdbank.Streams" />
20
21
<PackageReference Include =" Newtonsoft.Json" />
21
22
<PackageReference Include =" Microsoft.CodeAnalysis.PublicApiAnalyzers" PrivateAssets =" all" />
Original file line number Diff line number Diff line change @@ -644,12 +644,14 @@ public async Task StreamClosesDeterministically()
644
644
writing = true ;
645
645
this . Logger . WriteLine ( "Writing {0} bytes." , e . Length ) ;
646
646
} ;
647
+ #pragma warning disable CS0618 // Type or member is obsolete
647
648
monitoredStream . DidWrite += ( s , e ) =>
648
649
{
649
650
Assert . True ( writing ) ;
650
651
writing = false ;
651
652
this . Logger . WriteLine ( "Wrote {0} bytes." , e . Count ) ;
652
653
} ;
654
+ #pragma warning restore CS0618 // Type or member is obsolete
653
655
monitoredStream . DidWriteByte += ( s , e ) =>
654
656
{
655
657
Assert . True ( writing ) ;
You can’t perform that action at this time.
0 commit comments