Skip to content

Commit

Permalink
[main] Update dependencies from dotnet/roslyn-analyzers (#93338)
Browse files Browse the repository at this point in the history
* Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20231011.1

Microsoft.CodeAnalysis.Analyzers , Microsoft.CodeAnalysis.NetAnalyzers
 From Version 3.11.0-beta1.23505.1 -> To Version 3.11.0-beta1.23511.1

* Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20231011.1

Microsoft.CodeAnalysis.Analyzers , Microsoft.CodeAnalysis.NetAnalyzers
 From Version 3.11.0-beta1.23505.1 -> To Version 3.11.0-beta1.23511.1

* Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20231011.1

Microsoft.CodeAnalysis.Analyzers , Microsoft.CodeAnalysis.NetAnalyzers
 From Version 3.11.0-beta1.23505.1 -> To Version 3.11.0-beta1.23511.1

* Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20231013.1

Microsoft.CodeAnalysis.Analyzers , Microsoft.CodeAnalysis.NetAnalyzers
 From Version 3.11.0-beta1.23505.1 -> To Version 3.11.0-beta1.23513.1

* Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20231013.1

Microsoft.CodeAnalysis.Analyzers , Microsoft.CodeAnalysis.NetAnalyzers
 From Version 3.11.0-beta1.23505.1 -> To Version 3.11.0-beta1.23513.1

* Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20231015.1

Microsoft.CodeAnalysis.Analyzers , Microsoft.CodeAnalysis.NetAnalyzers
 From Version 3.11.0-beta1.23505.1 -> To Version 3.11.0-beta1.23515.1

* Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20231015.1

Microsoft.CodeAnalysis.Analyzers , Microsoft.CodeAnalysis.NetAnalyzers
 From Version 3.11.0-beta1.23505.1 -> To Version 3.11.0-beta1.23515.1

* Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20231015.1

Microsoft.CodeAnalysis.Analyzers , Microsoft.CodeAnalysis.NetAnalyzers
 From Version 3.11.0-beta1.23505.1 -> To Version 3.11.0-beta1.23515.1

* Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20231015.1

Microsoft.CodeAnalysis.Analyzers , Microsoft.CodeAnalysis.NetAnalyzers
 From Version 3.11.0-beta1.23505.1 -> To Version 3.11.0-beta1.23515.1

* Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20231015.1

Microsoft.CodeAnalysis.Analyzers , Microsoft.CodeAnalysis.NetAnalyzers
 From Version 3.11.0-beta1.23505.1 -> To Version 3.11.0-beta1.23515.1

* Silence noisy analyzer

* Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20231020.1

Microsoft.CodeAnalysis.Analyzers , Microsoft.CodeAnalysis.NetAnalyzers
 From Version 3.11.0-beta1.23505.1 -> To Version 3.11.0-beta1.23520.1

---------

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Larry Ewing <lewing@microsoft.com>
  • Loading branch information
3 people committed Oct 22, 2023
1 parent 88d21cb commit a728228
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -371,13 +371,13 @@
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>15a20bbe5c84ea6a800df0803b4ee00f289646a2</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0-beta1.23505.1">
<Dependency Name="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0-beta1.23520.1">
<Uri>https://github.com/dotnet/roslyn-analyzers</Uri>
<Sha>8b1675a20d889de99684bfced2e0cbc1296c7853</Sha>
<Sha>80ac9265df5c8d70cbb25b57057b0f2772ed7d2a</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0-preview.23505.1">
<Dependency Name="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0-preview.23520.1">
<Uri>https://github.com/dotnet/roslyn-analyzers</Uri>
<Sha>8b1675a20d889de99684bfced2e0cbc1296c7853</Sha>
<Sha>80ac9265df5c8d70cbb25b57057b0f2772ed7d2a</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.ApiCompat.Task" Version="9.0.100-alpha.1.23520.7">
<Uri>https://github.com/dotnet/sdk</Uri>
Expand Down
4 changes: 2 additions & 2 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
</ItemGroup>
<PropertyGroup>
<!-- dotnet/roslyn-analyzers dependencies -->
<MicrosoftCodeAnalysisAnalyzersVersion>3.11.0-beta1.23505.1</MicrosoftCodeAnalysisAnalyzersVersion>
<MicrosoftCodeAnalysisNetAnalyzersVersion>9.0.0-preview.23505.1</MicrosoftCodeAnalysisNetAnalyzersVersion>
<MicrosoftCodeAnalysisAnalyzersVersion>3.11.0-beta1.23520.1</MicrosoftCodeAnalysisAnalyzersVersion>
<MicrosoftCodeAnalysisNetAnalyzersVersion>9.0.0-preview.23520.1</MicrosoftCodeAnalysisNetAnalyzersVersion>
<!-- dotnet/roslyn dependencies -->
<!--
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.
Expand Down
2 changes: 1 addition & 1 deletion src/tasks/WasmBuildTasks/GetChromeVersions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ private async Task<(ChromeVersionSpec versionSpec, string baseSnapshotUrl)> Find
int numMajorVersionsTried = 0;

string curMajorVersion = string.Empty;
await foreach (string version in GetVersionsAsync())
await foreach (string version in GetVersionsAsync().ConfigureAwait(false))
{
string majorVersion = version[..version.IndexOf('.')];
if (curMajorVersion != majorVersion)
Expand Down

0 comments on commit a728228

Please sign in to comment.