Skip to content

Commit

Permalink
Merge pull request #1738 from dotnet/merges/release/7.x-to-main
Browse files Browse the repository at this point in the history
Merge release/7.x to main
  • Loading branch information
dotnet-bot authored Oct 11, 2022
2 parents 4e193b0 + 4af786a commit 818980d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PropertyGroup>
<MicrosoftBuildVersion>17.3.0-preview-22302-02</MicrosoftBuildVersion>
<MicrosoftCodeAnalysisAnalyzersVersion>3.3.3</MicrosoftCodeAnalysisAnalyzersVersion>
<MicrosoftExtensionsDependencyInjectionVersion>7.0.0-preview.2.22152.2</MicrosoftExtensionsDependencyInjectionVersion>
<MicrosoftExtensionsDependencyInjectionVersion>7.0.0-rc.1.22426.10</MicrosoftExtensionsDependencyInjectionVersion>
<!-- Dependencies from https://github.com/dotnet/roslyn -->
<MicrosoftNetCompilersToolsetPackageVersion>4.4.0-3.22510.10</MicrosoftNetCompilersToolsetPackageVersion>
<!-- Dependencies from https://github.com/dotnet/command-line-api -->
Expand Down
2 changes: 1 addition & 1 deletion src/Logging/SimpleConsoleLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public bool IsEnabled(LogLevel logLevel)
return (int)logLevel >= (int)_minimalLogLevel;
}

public IDisposable BeginScope<TState>(TState state)
public IDisposable? BeginScope<TState>(TState state) where TState : notnull
{
return NullScope.Instance;
}
Expand Down

0 comments on commit 818980d

Please sign in to comment.