Bump the nuget-dependencies group with 18 updates#95
Open
dependabot[bot] wants to merge 1 commit into
Open
Conversation
Bumps AsyncFixer from 1.6.0 to 2.1.0 Bumps coverlet.collector from 6.0.4 to 10.0.1 Bumps Meziantou.Analyzer from 2.0.222 to 3.0.117 Bumps Microsoft.Bcl.AsyncInterfaces from 9.0.9 to 10.0.9 Bumps Microsoft.Build.Framework from 17.14.28 to 18.7.1 Bumps Microsoft.Build.Utilities.Core from 17.14.28 to 18.7.1 Bumps Microsoft.CodeAnalysis.NetAnalyzers from 9.0.0 to 10.0.301 Bumps Microsoft.NET.Test.Sdk from 17.14.1 to 18.7.0 Bumps Microsoft.SourceLink.GitHub from 8.0.0 to 10.0.300 Bumps MSTest.TestAdapter from 3.10.5 to 4.2.3 Bumps MSTest.TestFramework from 3.10.5 to 4.2.3 Bumps ReferenceTrimmer from 3.3.12 to 3.5.7 Bumps Roslynator.Analyzers from 4.14.0 to 4.15.0 Bumps System.IO.Pipelines from 9.0.9 to 10.0.9 Bumps System.Text.Encodings.Web from 9.0.9 to 10.0.9 Bumps System.Text.Json from 9.0.9 to 10.0.9 Bumps YamlDotNet from 16.3.0 to 18.1.0 Bumps YamlDotNet.System.Text.Json from 1.6.6 to 1.9.0 --- updated-dependencies: - dependency-name: AsyncFixer dependency-version: 2.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget-dependencies - dependency-name: coverlet.collector dependency-version: 10.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget-dependencies - dependency-name: Meziantou.Analyzer dependency-version: 3.0.117 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget-dependencies - dependency-name: Microsoft.Bcl.AsyncInterfaces dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget-dependencies - dependency-name: Microsoft.Build.Framework dependency-version: 18.7.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget-dependencies - dependency-name: Microsoft.Build.Utilities.Core dependency-version: 18.7.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget-dependencies - dependency-name: Microsoft.CodeAnalysis.NetAnalyzers dependency-version: 10.0.301 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget-dependencies - dependency-name: Microsoft.NET.Test.Sdk dependency-version: 18.7.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget-dependencies - dependency-name: Microsoft.SourceLink.GitHub dependency-version: 10.0.300 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget-dependencies - dependency-name: MSTest.TestAdapter dependency-version: 4.2.3 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget-dependencies - dependency-name: MSTest.TestFramework dependency-version: 4.2.3 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget-dependencies - dependency-name: ReferenceTrimmer dependency-version: 3.5.7 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-dependencies - dependency-name: Roslynator.Analyzers dependency-version: 4.15.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-dependencies - dependency-name: System.IO.Pipelines dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget-dependencies - dependency-name: System.Text.Encodings.Web dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget-dependencies - dependency-name: System.Text.Json dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget-dependencies - dependency-name: YamlDotNet dependency-version: 18.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nuget-dependencies - dependency-name: YamlDotNet.System.Text.Json dependency-version: 1.9.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
Author
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated AsyncFixer from 1.6.0 to 2.1.0.
Release notes
Sourced from AsyncFixer's releases.
2.1.0
using vardeclarations (C# 8.0+) and warn when a task is returned from a using scope without being awaited. The disposable resource will be disposed before the returned task completes. (#13)await Task.WhenAny(task, ...)).Assert.ThrowsAsyncand similar assertion methods where discarding theTask<T>result is intentional.Action<T>delegates. (#16)Task<T>toTaskconversion in non-async lambdas. Unlike async lambdas which produce compiler error CS8031, non-async lambdas silently discard the result. (#26)await foreachstatements. (#41)ValueTask<T>return types.nameof(Task.Result). (#30)Task.WhenAll- accessing.Resulton awaitedWhenAlltasks is safe.EventArgstypes. (#39)TaskTupleAwaiterand similar custom awaiters. (#31)Taskin return statements. (#27)Microsoft.CodeAnalysisto v4.8.0.Nuget package
https://www.nuget.org/packages/AsyncFixer/2.1.0
Visual Studio 2022-2026 Extension
Updated with v2.1.0: https://marketplace.visualstudio.com/items?itemName=SemihOkur.AsyncFixer2022
Commits viewable in compare view.
Updated coverlet.collector from 6.0.4 to 10.0.1.
Release notes
Sourced from coverlet.collector's releases.
10.0.1
Improvements
Fixed
Maintenance
Diff between 10.0.0 and 10.0.1
10.0.0
Improvements
--coverlet-file-prefixoption for unique report files #1869Fixed
Maintenance
Diff between 8.0.1 and 10.0.0
8.0.1
Fixed
Improvements
Diff between 8.0.0 and 8.0.1
8.0.0
Special Thanks: A huge thank you to @Bertk for driving the majority of the work in this release! 🎉
Fixed
Improvements
Diff between 6.0.4 and 8.0.0
Commits viewable in compare view.
Updated Meziantou.Analyzer from 2.0.222 to 3.0.117.
Release notes
Sourced from Meziantou.Analyzer's releases.
3.0.117
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.117
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.116...3.0.117
3.0.116
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.116
What's Changed
isexpressions by @meziantou with @Copilot in Fix MA0194 merging of indexer-basedisexpressions meziantou/Meziantou.Analyzer#1209Full Changelog: meziantou/Meziantou.Analyzer@3.0.115...3.0.116
3.0.115
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.115
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.114...3.0.115
3.0.114
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.114
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.113...3.0.114
3.0.113
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.113
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.112...3.0.113
3.0.112
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.112
Full Changelog: meziantou/Meziantou.Analyzer@3.0.111...3.0.112
3.0.111
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.111
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.110...3.0.111
3.0.110
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.110
What's Changed
partialdiagnostics by @meziantou with @Copilot in MA0204: exclude WPF XAML root types from unnecessarypartialdiagnostics meziantou/Meziantou.Analyzer#1195Full Changelog: meziantou/Meziantou.Analyzer@3.0.109...3.0.110
3.0.109
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.109
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.108...3.0.109
3.0.108
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.108
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.107...3.0.108
3.0.107
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.107
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.106...3.0.107
3.0.106
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.106
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.105...3.0.106
3.0.105
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.105
What's Changed
<returns>tags onvoidmethods by @meziantou in Add MA0203 to flag<returns>tags onvoidmethods meziantou/Meziantou.Analyzer#1189Full Changelog: meziantou/Meziantou.Analyzer@3.0.104...3.0.105
3.0.104
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.104
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.103...3.0.104
3.0.103
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.103
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.102...3.0.103
3.0.102
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.102
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.101...3.0.102
3.0.101
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.101
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.100...3.0.101
3.0.100
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.100
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.99...3.0.100
3.0.99
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.99
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.98...3.0.99
3.0.98
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.98
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.97...3.0.98
3.0.97
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.97
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.96...3.0.97
3.0.96
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.96
Full Changelog: meziantou/Meziantou.Analyzer@3.0.95...3.0.96
3.0.95
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.95
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.94...3.0.95
3.0.94
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.94
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.93...3.0.94
3.0.93
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.93
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.92...3.0.93
3.0.92
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.92
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.91...3.0.92
3.0.91
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.91
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.90...3.0.91
3.0.90
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.90
What's Changed
else ifchains with reachable prior branches by @Copilot in Fix MA0071 false positive forelse ifchains with reachable prior branches meziantou/Meziantou.Analyzer#1166Full Changelog: meziantou/Meziantou.Analyzer@3.0.89...3.0.90
3.0.89
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.89
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.88...3.0.89
3.0.88
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.88
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.87...3.0.88
3.0.87
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.87
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.86...3.0.87
3.0.86
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.86
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.85...3.0.86
3.0.85
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.85
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.84...3.0.85
3.0.84
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.84
What's Changed
[Experimental]overloads in MA0040 cancellation-token matching by @Copilot in Ignore[Experimental]overloads in MA0040 cancellation-token matching meziantou/Meziantou.Analyzer#1157Full Changelog: meziantou/Meziantou.Analyzer@3.0.83...3.0.84
3.0.83
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.83
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.82...3.0.83
3.0.82
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.82
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.81...3.0.82
3.0.81
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.81
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.80...3.0.81
3.0.80
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.80
Full Changelog: meziantou/Meziantou.Analyzer@3.0.79...3.0.80
3.0.79
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.79
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.78...3.0.79
3.0.78
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.78
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.77...3.0.78
3.0.77
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.77
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.76...3.0.77
3.0.76
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.76
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.75...3.0.76
3.0.75
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.75
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.74...3.0.75
3.0.74
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.74
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.73...3.0.74
3.0.73
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.73
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.72...3.0.73
3.0.72
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.72
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.71...3.0.72
3.0.71
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.71
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.70...3.0.71
3.0.70
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.70
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.69...3.0.70
3.0.69
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.69
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.68...3.0.69
3.0.68
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.68
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.67...3.0.68
3.0.67
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.67
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.66...3.0.67
3.0.66
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.66
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.65...3.0.66
3.0.65
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.65
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.64...3.0.65
3.0.64
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.64
What's Changed
Main(string[] args)by @Copilot in MA0109: Skip diagnostic for program entry pointMain(string[] args)meziantou/Meziantou.Analyzer#1123Full Changelog: meziantou/Meziantou.Analyzer@3.0.63...3.0.64
3.0.63
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.63
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.62...3.0.63
3.0.62
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.62
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.61...3.0.62
3.0.61
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.61
What's Changed
IDbContextFactory<TContext>.CreateDbContext()by @Copilot in MA0042: suppress diagnostic forIDbContextFactory<TContext>.CreateDbContext()meziantou/Meziantou.Analyzer#1116Full Changelog: meziantou/Meziantou.Analyzer@3.0.60...3.0.61
3.0.60
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.60
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.59...3.0.60
3.0.59
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.59
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.58...3.0.59
3.0.58
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.58
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.57...3.0.58
3.0.57
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.57
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.56...3.0.57
3.0.56
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.56
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.55...3.0.56
3.0.55
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.55
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.54...3.0.55
3.0.54
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.54
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.53...3.0.54
3.0.53
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.53
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.52...3.0.53
3.0.52
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.52
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.51...3.0.52
3.0.51
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.51
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.50...3.0.51
3.0.50
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.50
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.49...3.0.50
3.0.49
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.49
What's Changed
istype checks as internal type usage by @Copilot in MA0182: treatistype checks as internal type usage meziantou/Meziantou.Analyzer#1096Full Changelog: meziantou/Meziantou.Analyzer@3.0.48...3.0.49
3.0.48
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.48
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.47...3.0.48
3.0.47
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.47
Full Changelog: meziantou/Meziantou.Analyzer@3.0.46...3.0.47
3.0.46
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.46
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.45...3.0.46
3.0.45
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.45
What's Changed
@destructuring prefix not stripped consistently for multi-parameter log calls by @Copilot in Fix MA0135/MA0139: Serilog@destructuring prefix not stripped consistently for multi-parameter log calls meziantou/Meziantou.Analyzer#1089Full Changelog: meziantou/Meziantou.Analyzer@3.0.44...3.0.45
3.0.44
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.44
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.43...3.0.44
3.0.43
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.43
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.42...3.0.43
3.0.42
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.42
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.41...3.0.42
3.0.41
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.41
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.40...3.0.41
3.0.40
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.40
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.39...3.0.40
3.0.39
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.39
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.38...3.0.39
3.0.38
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.38
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.37...3.0.38
3.0.37
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.37
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.36...3.0.37
3.0.36
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.36
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.35...3.0.36
3.0.35
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.35
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.34...3.0.35
3.0.34
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.34
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.33...3.0.34
3.0.33
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.33
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.32...3.0.33
3.0.32
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.32
What's Changed
classkeyword from record declarations) by @Copilot in Add code fixer for MA0175 (Remove explicitclasskeyword from record declarations) meziantou/Meziantou.Analyzer#1069Full Changelog: meziantou/Meziantou.Analyzer@3.0.31...3.0.32
3.0.31
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.31
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.30...3.0.31
3.0.30
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.30
What's Changed
exclude_test_methodsconfiguration option by @Copilot in MA0137: Addexclude_test_methodsconfiguration option meziantou/Meziantou.Analyzer#1067Full Changelog: meziantou/Meziantou.Analyzer@3.0.29...3.0.30
3.0.29
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.29
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.28...3.0.29
3.0.28
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.28
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.27...3.0.28
3.0.27
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.27
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.26...3.0.27
3.0.26
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.26
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.25...3.0.26
3.0.25
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.25
Full Changelog: meziantou/Meziantou.Analyzer@3.0.24...3.0.25
3.0.24
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.24
Full Changelog: meziantou/Meziantou.Analyzer@3.0.23...3.0.24
3.0.23
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.23
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.22...3.0.23
3.0.22
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.22
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.21...3.0.22
3.0.21
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.21
What's Changed
roslyn5.0packing by @viceroypenguin in Addroslyn5.0packing meziantou/Meziantou.Analyzer#1054Full Changelog: meziantou/Meziantou.Analyzer@3.0.20...3.0.21
3.0.20
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.20
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.19...3.0.20
3.0.19
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.19
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.18...3.0.19
3.0.18
NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.18
What's Changed
Full Changelog: meziantou/Meziantou.Analyzer@3.0.17...3.0.18
Commits viewable in compare view.
Updated Microsoft.Bcl.AsyncInterfaces from 9.0.9 to 10.0.9.
Release notes
Sourced from Microsoft.Bcl.AsyncInterfaces's releases.
10.0.0-preview.6.25358.103
You can build .NET 10.0 Preview 6 from the repository by cloning the release tag
v10.0.0-preview.6.25358.103and following the build instructions in the main README.md.Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.
Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023
10.0.0-preview.5.25277.114
You can build .NET 10.0 Preview 5 from the repository by cloning the release tag
v10.0.0-preview.5.25277.114and following the build instructions in the main README.md.Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.
Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023
10.0.0-preview.4.25258.110
You can build .NET 10.0 Preview 4 from the repository by cloning the release tag
v10.0.0-preview.4.25258.110and following the build instructions in the main README.md.Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.
Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023
10.0.0-preview.3.25171.5
You can build .NET 10.0 Preview 3 from the repository by cloning the release tag
v10.0.0-preview.3.25171.5and following the build instructions in the main README.md.Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.
Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023
10.0.0-preview.2.25163.2
You can build .NET 10.0 Preview 2 from the repository by cloning the release tag
v10.0.0-preview.2.25163.2and following the build instructions in the main README.md.Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.
Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023
10.0.0-preview.1.25080.5
You can build .NET 10.0 Preview 1 from the repository by cloning the release tag
v10.0.0-preview.1.25080.5and following the build instructions in the main README.md.Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.
Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023
9.0.118
You can build .NET 9.0 from the repository by cloning the release tag
v9.0.118and following the build instructions in the main README.md.Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.
Attached is a PGP signature for the GitHub generated tarball. You can find the public key at https://dot.net/release-key-2023
9.0.117
You can build .NET 9.0 from the repository by cloning the release tag
v9.0.117and following the build instructions in the main README.md.Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.
Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023
9.0.116
You can build .NET 9.0 from the repository by cloning the release tag
v9.0.116and following the build instructions in the main README.md.Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.
Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023
9.0.115
You can build .NET 9.0 from the repository by cloning the release tag
v9.0.115and following the build instructions in the main README.md.Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.
Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023
9.0.114
You can build .NET 9.0 from the repository by cloning the release tag
v9.0.114and following the build instructions in the main README.md.Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.
Attached is the PGP signature for the GitHub generated tarball. You can find the public key at https://dot.net/release-key-2023
9.0.113
You can build .NET 9.0 from the repository by cloning the release tag
v9.0.113and following the build instructions in the main README.md.Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.
Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023
9.0.112
You can build .NET 9.0 from the repository by cloning the release tag
v9.0.112and following the build instructions in the main README.md.Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.
Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023
9.0.111
You can build .NET 9.0 from the repository by cloning the release tag
v9.0.111and following the build instructions in the main README.md.Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.
Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023
9.0.110
You can build .NET 9.0 from the repository by cloning the release tag
v9.0.110and following the build instructions in the main README.md.Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.
Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023
9.0.109
You can build .NET 9.0 from the repository by cloning the release tag
v9.0.109and following the build instructions in the main README.md.Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.
Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023
9.0.101
You can build .NET 9.0 from the repository by cloning the release tag
v9.0.101and following the build instructions in the main README.md.Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.
Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023
Commits viewable in compare view.
Updated Microsoft.Build.Framework from 17.14.28 to 18.7.1.
Release notes
Sourced from Microsoft.Build.Framework's releases.
18.7.1
What's Changed
... (truncated)
18.6.3
What's Changed
Includeattributes by @glektarssza in Updated common types XSD to remove errors from redefiningIncludeattributes dotnet/msbuild#13284Description has been truncated