chore(deps): bump dotnet dependency group#360
Merged
akrock merged 2 commits intoMay 23, 2026
Merged
Conversation
Bumps Acornima from 1.6.1 to 1.6.2 Bumps Autofac from 8.0.0 to 9.1.0 Bumps Autofac.Extensions.DependencyInjection from 9.0.0 to 11.0.0 Bumps BenchmarkDotNet from 0.15.2 to 0.15.8 Bumps Carter from 9.0.0 to 10.0.0 Bumps CliFx from 2.3.6 to 3.0.0 Bumps coverlet.collector from 6.0.4 to 10.0.1 Bumps coverlet.msbuild from 6.0.4 to 10.0.1 Bumps FakeItEasy from 9.0.0 to 9.0.1 Bumps GitHubActionsTestLogger from 2.4.1 to 3.0.4 Bumps JunitXml.TestLogger from 6.1.0 to 8.0.0 Bumps Markdig from 0.44.0 to 1.2.0 Bumps Microsoft.AspNetCore.OpenApi from 9.0.8 to 10.0.8 Bumps Microsoft.Extensions.Options from 9.0.6 to 10.0.8 Bumps Microsoft.NET.Test.Sdk from 17.14.1 to 18.5.1 Bumps Microsoft.Playwright from 1.58.0 to 1.60.0 Bumps Scalar.AspNetCore from 2.6.8 to 2.14.14 Bumps Volo.Abp.Core from 9.3.1 to 10.4.0 Bumps YamlDotNet from 17.0.1 to 18.0.0 --- updated-dependencies: - dependency-name: Acornima dependency-version: 1.6.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet-dependencies - dependency-name: Autofac dependency-version: 9.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dotnet-dependencies - dependency-name: Autofac.Extensions.DependencyInjection dependency-version: 11.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dotnet-dependencies - dependency-name: BenchmarkDotNet dependency-version: 0.15.8 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet-dependencies - dependency-name: Carter dependency-version: 10.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dotnet-dependencies - dependency-name: CliFx dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dotnet-dependencies - dependency-name: coverlet.collector dependency-version: 10.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dotnet-dependencies - dependency-name: coverlet.msbuild dependency-version: 10.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dotnet-dependencies - dependency-name: FakeItEasy dependency-version: 9.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet-dependencies - dependency-name: GitHubActionsTestLogger dependency-version: 3.0.4 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dotnet-dependencies - dependency-name: JunitXml.TestLogger dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dotnet-dependencies - dependency-name: Markdig dependency-version: 1.2.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dotnet-dependencies - dependency-name: Microsoft.AspNetCore.OpenApi dependency-version: 10.0.8 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dotnet-dependencies - dependency-name: Microsoft.Extensions.Options dependency-version: 10.0.8 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dotnet-dependencies - dependency-name: Microsoft.NET.Test.Sdk dependency-version: 18.5.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dotnet-dependencies - dependency-name: Microsoft.Playwright dependency-version: 1.60.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet-dependencies - dependency-name: Scalar.AspNetCore dependency-version: 2.14.14 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet-dependencies - dependency-name: Volo.Abp.Core dependency-version: 10.4.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dotnet-dependencies - dependency-name: YamlDotNet dependency-version: 18.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dotnet-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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 Acornima from 1.6.1 to 1.6.2.
Release notes
Sourced from Acornima's releases.
1.6.2
Improvements:
Bug fixes:
/[!-\#]/v).Tokenizer.AdaptRegExpandTokenizer.ValidateRegExp.Commits viewable in compare view.
Updated Autofac from 8.0.0 to 9.1.0.
Release notes
Sourced from Autofac's releases.
9.1.0
This is a pretty big release for Autofac with some major new functionality!
AnyKey Support
First, Autofac now natively supports the concept of
AnyKey. It behaves the same wayAnyKeyworks in Microsoft.Extensions.DependencyInjection, but it is native to Autofac directly. The unit tests here show some very detailed examples of usage, but on a high level:Inject Service Key Into Constructors
The new
[ServiceKey]attribute allows you to inject the service key provided during resolution. This is handy in conjunction withAnyKey. Again, this is similar to the construct in Microsoft.Extensions.DependencyInjection, but with native Autofac.First, mark up your class to take the constructor parameter.
Then when you resolve the class, the service key will automatically be injected.
You can also make use of this in a lambda registration.
Metrics
Some metrics have been introduced that can allow you to capture counters on how long middleware is taking, how often lock contention occurs, and so on.
Set the
AUTOFAC_METRICSenvironment variable in your process totrueor1to enable this feature. You can see the set of counters that will become available here.... (truncated)
9.0.0
Updated Autofac for .NET 10. New current set of target frameworks:
net10.0;net8.0;netstandard2.1;netstandard2.0Breaking Changes
Dropped support for
net6.0,net7.0.Additional Changes
net10.0.Full Changelog: autofac/Autofac@v8.4.0...v9.0.0
8.4.0
Minor breaking change: The shim
RequiresUnreferencedCodeAttributehas been changed frompublictointernal(#1462/#1463 - thanks @prochnowc!). This will only affect people targeting older/lower .NET standard frameworks who also rely on the shim attribute in Autofac. While it's technically breaking, it didn't seem like a great reason to do a full major release due to the edge case nature of the set of applications/users affected.8.3.0
What's Changed
IIndex<K,V>.TryGetValue()since it may return null on failure.Full Changelog: autofac/Autofac@v8.2.1...v8.3.0
8.2.1
Fix #1450:
AutoActivate()no longer hides the default service registration. (Thanks, @nblumhardt!)8.2.0
What's Changed
AssemblyLoadContextdisposal (#1438 - thanks @hemirunner426!)RegisterServiceMiddlewareto assist with interceptors/decorators (#1439 - thanks @idiotsky!)Full Changelog: autofac/Autofac@v8.1.1...v8.2.0
8.1.1
What's Changed
ResolveRequest.operator==()(#1430, thanks @SergeiPavlov!)WithPropertyregistration methods consistently allow null values (#1428)Full Changelog: autofac/Autofac@v8.1.0...v8.1.1
8.1.0
What's Changed
requiredmember caching (#1415 - thanks @SergeiPavlov!)requiredinfrastructure attributes by (#1421 - thanks @DoctorVanGogh!)Full Changelog: autofac/Autofac@v8.0.0...v8.1.0
Commits viewable in compare view.
Updated Autofac.Extensions.DependencyInjection from 9.0.0 to 11.0.0.
Release notes
Sourced from Autofac.Extensions.DependencyInjection's releases.
11.0.0
Breaking Changes
AnyKeysupport to use the new native support forAnyKeyin core Autofac - this removes some of the custom internals used to support keyed services and moves that to core Autofac.Other Changes
Full Changelog: autofac/Autofac.Extensions.DependencyInjection@v10.0.0...v11.0.0
10.0.0
Breaking Changes
All instance dependencies are now considered
ExternallyOwnedwhich means if you register an object instance in the dependency injection container through this package, when you dispose of the container it will not dispose of the provided instance. This is different than default Autofac behavior. Autofac normally assumes control of registered instances, where the Microsoft DI container does not. This change only affects instances registered using the Microsoft syntax and then populated into Autofac; it does not change the underlying Autofac container.Additional Changes
Full Changelog: autofac/Autofac.Extensions.DependencyInjection@v9.0.0...v10.0.0
Commits viewable in compare view.
Updated BenchmarkDotNet from 0.15.2 to 0.15.8.
Release notes
Sourced from BenchmarkDotNet's releases.
0.15.8
This release adds OpenMetrics exporter support for Prometheus-compatible metrics export, improves the Roslyn analyzers with multi-target support and better type checking, and fixes several bugs including process deadlocks and WASM trimming issues.
Features
NO_COLORenvironment variable support for disabling console colors (#2870)Improvements
[DynamicallyAccessedMembers]attribute polyfill (#2883)AsyncProcessOutputReaderfor cleaner process output handling (#2878)Bug Fixes
BenchmarkRunner.Run<T>()with arguments on invalid benchmark type (#2880, fixes #2724)Internal
#if-#endifpreprocessor directives using PolySharp polyfills (#2881)Full Changelog: dotnet/BenchmarkDotNet@v0.15.7...v0.15.8
0.15.7
This release introduces Roslyn analyzers to catch incorrect BenchmarkDotNet usage at compile time, improves .NET Framework version detection, and updates OS detection support.
Features
[Arguments],[Params], and[ParamsAllValues]attribute usage[GenericTypeArguments]requirementsBenchmarkRunner.RuninvocationsImprovements
TargetFrameworkAttribute(#2682)OsBrandHelperBug Fixes
TestCaseFilterfor the test adapterInternal
release.yamlFull Changelog: dotnet/BenchmarkDotNet@v0.15.6...v0.15.7
0.15.6
v0.15.6
This release adds ref struct parameter support for
[ArgumentsSource], fixes Native AOT runtime moniker resolution, and upgrades to Perfolizer 0.6.0 with the new Pragmastat statistical engine.Features
[ArgumentsSource]attribute, enablingSpan<T>andReadOnlySpan<char>parameters (#2849)Bug Fixes
Improvements
Documentation
Internal
Full Changelog: dotnet/BenchmarkDotNet@v0.15.5...v0.15.6
0.15.5
This release fixes job naming consistency when using
--runtimes, clamps histogram bin bounds to avoid confusing negative values, and reduces output directory clutter by filtering unnecessary runtime and satellite assembly files.Features
Bug Fixes
SimpleJobAttributeand--runtimesCLI option (#2841)Internal
workflow_dispatchfor test workflow (#2835)Full Changelog: dotnet/BenchmarkDotNet@v0.15.4...v0.15.5
0.15.4
This release fixes issues with
ParamsSourceattribute resolution in inheritance scenarios and corrects a MSBuild syntax error in the TestAdapter.Bug Fixes
[ParamsSource]to resolve overridden methods and properties in derived classes (#2832)TestTfmsInParallelproperty that prevented Visual Studio from loading projects (#2831)Full Changelog: dotnet/BenchmarkDotNet@v0.15.3...v0.15.4
0.15.3
This release brings .NET 10 NativeAOT instruction set support, improved CPU detection on Windows when WMIC is unavailable, test adapter filtering, and numerous bug fixes.
Breaking Changes
.WithNuget()job extension in favor of.WithMsBuildArguments()(#2812)Features
Improvements
IsNetCoreandIsNativeAOTdetection for single-file apps without AOT (#2799)--nodeReuse:falsefor dotnet CLI commands to improve build isolation (#2814)Bug Fixes
ArgumentsSourceon external types not working if the argument type is not primitive (#2820)EtwProfilerfor file paths slightly under 260 characters (#2808)EventProcessor.OnEndValidationStagenot being called when critical validation errors occur (#2816)XmlExceptionthrown whenTextReader.Nullis passed toAppConfigGenerator(#2817)NativeMemoryLogParserprogram name matching (#2795)BuildPlots.RInternal
MemoryDiagnosertests on macOS (#2813)TimeConsumingBenchmarkclass to reduce test timeBenchmarkDotNetDiagnoserspackage version (#2805)GenerateProgramFile(#2802)Full Changelog: dotnet/BenchmarkDotNet@v0.15.2...v0.15.3
Commits viewable in compare view.
Updated Carter from 9.0.0 to 10.0.0.
Release notes
Sourced from Carter's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated CliFx from 2.3.6 to 3.0.0.
Release notes
Sourced from CliFx's releases.
3.0
What's new
Source generation instead of reflection
CliFx no longer relies on run-time reflection. Instead, it uses Roslyn source generators to collect metadata about command bindings and extend your types with additional behavior at compile time. This enables full Native AOT and assembly trimming support.
Command types must now be declared as
partial(including all enclosing types, if nested).Auto-generated
Main()methodIf your project doesn't define a
Main()method or use top-level statements, CliFx will automatically generate an entry point that builds and runs the application using all commands from the assembly.Manual help and version option binding
You can now implement
ICommandWithHelpOptionand/orICommandWithVersionOptionon your command types and apply[CommandOption]attributes to choose custom identifiers for the help and version options. By default, the source generator auto-implements these interfaces with the conventional-h|--helpand--versionbindings.Public
CommandDescriptorCommand metadata is exposed via the public
CommandDescriptorclass (inCliFx.Binding). Source-generated commands expose a staticDescriptorproperty, which can be used to register commands with the builder viaAddCommand(CommandDescriptor).Breaking changes
Type and namespace renames
CliApplicationCommandLineApplicationCliApplicationBuilderCommandLineApplicationBuilderCliFx.AttributesnamespaceCliFx.BindingnamespaceCliFx.ExceptionsnamespaceCliFx(root namespace)CliFx.Extensibility.BindingConverter<T>CliFx.Activation.ScalarInputConverter<T>/SequenceInputConverter<T>CliFx.Extensibility.BindingValidator<T>CliFx.Activation.InputValidator<T>UseTypeActivator(...)UseTypeInstantiator(...)IsRequiredremoved from attributesCommandOptionAttribute.IsRequiredandCommandParameterAttribute.IsRequiredhave been removed. Use the C#requiredkeyword on the property instead.Init-only properties no longer supported
Input-bound properties must use a regular
setaccessor. Replaceinitwithseton all properties annotated with[CommandParameter]or[CommandOption].Directives replaced with environment variables
The
[preview]and[debug]directives have been removed. UseCommandLineApplicationBuilder.AllowDebugMode(...)andAllowPreviewMode(...)to configure environment variables that enable these modes (e.g.CLIFX_DEBUG=true ./myapp ...). Both modes are disabled by default.Preview mode no longer short-circuits
... (truncated)
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 coverlet.msbuild from 6.0.4 to 10.0.1.
Release notes
Sourced from coverlet.msbuild'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 FakeItEasy from 9.0.0 to 9.0.1.
Release notes
Sourced from FakeItEasy's releases.
9.0.1
Fixed
IsSameSequenceAs(#2084)Additional Items
Commits viewable in compare view.
Updated GitHubActionsTestLogger from 2.4.1 to 3.0.4.
Release notes
Sourced from GitHubActionsTestLogger's releases.
3.0.4
What's Changed
Enhancements
Bugs
summaryWriterbefore reading file in truncation tests by @Copilot in Explicitly disposesummaryWriterbefore reading file in truncation tests Tyrrrz/GitHubActionsTestLogger#76Full Changelog: Tyrrrz/GitHubActionsTestLogger@3.0.3...3.0.4
3.0.3
What's Changed
Full Changelog: Tyrrrz/GitHubActionsTestLogger@3.0.2...3.0.3
3.0.2
What's Changed
SubstringAfterLastby @Copilot in Use range indexer inSubstringAfterLastTyrrrz/GitHubActionsTestLogger#62New Contributors
Full Changelog: Tyrrrz/GitHubActionsTestLogger@3.0.1...3.0.2
3.0.1
Full Changelog: Tyrrrz/GitHubActionsTestLogger@3.0...3.0.1
3.0
Configuration breaking changes
@trait.XYZreplacement token has been removed.See the readme for updated usage instructions.
What's Changed
Microsoft.Testing.Platformby @Tyrrrz in Add support forMicrosoft.Testing.PlatformTyrrrz/GitHubActionsTestLogger#53New Contributors
Full Changelog: Tyrrrz/GitHubActionsTestLogger@2.4.1...3.0
Commits viewable in compare view.
Updated JunitXml.TestLogger from 6.1.0 to 8.0.0.
Release notes
Sourced from JunitXml.TestLogger's releases.
8.0.0
8.0.0 (2026-01-09)
⚠ BREAKING CHANGES
Features
7.1.0
7.1.0 (2025-12-13)
Features
Bug Fixes
7.0.2
7.0.2 (2025-10-08)
Bug Fixes
7.0.1
7.0.1 (2025-10-04)
Bug Fixes
7.0.0
7.0.0 (2025-09-22)
⚠ BREAKING CHANGES
Features
Bug Fixes
Commits viewable in compare view.
Updated Markdig from 0.44.0 to 1.2.0.
Release notes
Sourced from Markdig's releases.
1.2.0
Changes
🚀 Enhancements
🧰 Misc
Full Changelog: 1.1.3...1.2.0
Published with dotnet-releaser
1.1.3
Changes
🐛 Bug Fixes
🚀 Enhancements
Full Changelog: 1.1.2...1.1.3
Published with dotnet-releaser
1.1.2
Changes
🐛 Bug Fixes
Full Changelog: 1.1.1...1.1.2
Published with dotnet-releaser
1.1.1
Changes
🐛 Bug Fixes
Full Changelog: 1.1.0...1.1.1
Published with dotnet-releaser
1.1.0
Changes
🚀 Enhancements
🧰 Misc
Full Changelog: 1.0.1...1.1.0
Published with dotnet-releaser
1.0.1
Changes
✨ New Features
🧰 Maintenance
🧰 Misc
Full Changelog: 1.0.0...1.0.1
Published with dotnet-releaser
1.0.0
Changes
✨ New Features
🚀 Enhancements
🧰 Misc
Full Changelog: 1.0.0-preview.1...1.0.0
Published with dotnet-releaser
1.0.0-preview.1
Changes
✨ New Features
🐛 Bug Fixes
🧰 Misc
Full Changelog: 0.45.0...1.0.0-preview.1
Published with dotnet-releaser
0.45.0
Changes
🚀 Enhancements
Full Changelog: 0.44.0...0.45.0
Published with dotnet-releaser
Commits viewable in compare view.
Updated Microsoft.AspNetCore.OpenApi from 9.0.8 to 10.0.8.
Release notes
Sourced from Microsoft.AspNetCore.OpenApi'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.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.Extensions.Options from 9.0.6 to 10.0.8.
Release notes
Sourced from Microsoft.Extensions.Options'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.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