Skip to content

Commit 3118a2b

Browse files
dotnet-maestro[bot]lewingstephentoub
authored
[main] Update dependencies from dotnet/roslyn-analyzers (#98852)
* Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20240222.2 Microsoft.CodeAnalysis.Analyzers , Microsoft.CodeAnalysis.NetAnalyzers From Version 3.11.0-beta1.24121.1 -> To Version 3.11.0-beta1.24122.2 * Remove Redundant null check that makes analyzer mad * Remove erroneous ThrowIfNull * Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20240222.2 Microsoft.CodeAnalysis.Analyzers , Microsoft.CodeAnalysis.NetAnalyzers From Version 3.11.0-beta1.24121.1 -> To Version 3.11.0-beta1.24122.2 * Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20240222.2 Microsoft.CodeAnalysis.Analyzers , Microsoft.CodeAnalysis.NetAnalyzers From Version 3.11.0-beta1.24121.1 -> To Version 3.11.0-beta1.24122.2 * Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20240222.2 Microsoft.CodeAnalysis.Analyzers , Microsoft.CodeAnalysis.NetAnalyzers From Version 3.11.0-beta1.24121.1 -> To Version 3.11.0-beta1.24122.2 --------- Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Larry Ewing <[email protected]> Co-authored-by: Stephen Toub <[email protected]>
1 parent cebdd66 commit 3118a2b

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

eng/Version.Details.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -405,13 +405,13 @@
405405
<Uri>https://github.com/dotnet/roslyn</Uri>
406406
<Sha>77372c66fd54927312b5b0a2e399e192f74445c9</Sha>
407407
</Dependency>
408-
<Dependency Name="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0-beta1.24121.1">
408+
<Dependency Name="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0-beta1.24122.2">
409409
<Uri>https://github.com/dotnet/roslyn-analyzers</Uri>
410-
<Sha>4195460a822168a75aa3d31b4a8d0fa88c42855c</Sha>
410+
<Sha>ba8b7f2c3ae092d0301f0c5e49bd30340af553c8</Sha>
411411
</Dependency>
412-
<Dependency Name="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0-preview.24121.1">
412+
<Dependency Name="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0-preview.24122.2">
413413
<Uri>https://github.com/dotnet/roslyn-analyzers</Uri>
414-
<Sha>4195460a822168a75aa3d31b4a8d0fa88c42855c</Sha>
414+
<Sha>ba8b7f2c3ae092d0301f0c5e49bd30340af553c8</Sha>
415415
</Dependency>
416416
<!-- Intermediate is necessary for source build. -->
417417
<Dependency Name="Microsoft.SourceBuild.Intermediate.roslyn" Version="4.10.0-2.24114.13">

eng/Versions.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
</ItemGroup>
3535
<PropertyGroup>
3636
<!-- dotnet/roslyn-analyzers dependencies -->
37-
<MicrosoftCodeAnalysisAnalyzersVersion>3.11.0-beta1.24121.1</MicrosoftCodeAnalysisAnalyzersVersion>
38-
<MicrosoftCodeAnalysisNetAnalyzersVersion>9.0.0-preview.24121.1</MicrosoftCodeAnalysisNetAnalyzersVersion>
37+
<MicrosoftCodeAnalysisAnalyzersVersion>3.11.0-beta1.24122.2</MicrosoftCodeAnalysisAnalyzersVersion>
38+
<MicrosoftCodeAnalysisNetAnalyzersVersion>9.0.0-preview.24122.2</MicrosoftCodeAnalysisNetAnalyzersVersion>
3939
<!-- dotnet/roslyn dependencies -->
4040
<!--
4141
These versions should not be used by any project that contributes to the design-time experience in VS, such as an analyzer, code-fix, or generator assembly.

src/libraries/System.Linq.Expressions/src/System/Linq/Expressions/Interpreter/InstructionList.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ internal sealed class DebugView
4444

4545
public DebugView(InstructionArray array)
4646
{
47-
ArgumentNullException.ThrowIfNull(array);
4847
_array = array;
4948
}
5049

src/libraries/System.Net.Http/src/System/Net/Http/BrowserHttpHandler/BrowserHttpHandler.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,6 @@ public BrowserHttpReadStream(BrowserHttpController controller)
511511

512512
public override async ValueTask<int> ReadAsync(Memory<byte> buffer, CancellationToken cancellationToken)
513513
{
514-
ArgumentNullException.ThrowIfNull(buffer, nameof(buffer));
515514
_controller.ThrowIfDisposed();
516515

517516
MemoryHandle pinBuffer = buffer.Pin();

0 commit comments

Comments
 (0)