Skip to content

Expose VersionSourceSemVer as Output Variable#4804

Merged
arturcic merged 7 commits intoGitTools:mainfrom
jakublatkowski:feature/baseversion
Feb 7, 2026
Merged

Expose VersionSourceSemVer as Output Variable#4804
arturcic merged 7 commits intoGitTools:mainfrom
jakublatkowski:feature/baseversion

Conversation

@jakublatkowski
Copy link
Copy Markdown
Contributor

@jakublatkowski jakublatkowski commented Jan 27, 2026

This PR adds VersionSourceSemVer to the standard output variables exposed by GitVersion.

Description

This PR adds VersionSourceSemVer to the standard output variables exposed by GitVersion, making it available alongside existing version fields in:

  • Environment variables (e.g., GitVersion_VersionSourceSemVer)
  • JSON output
  • Build agent-specific outputs (Azure Pipelines, GitHub Actions, etc.)

The VersionSourceSemVer represents the base semantic version calculated by GitVersion before any pre-release tags or metadata are applied. This is the foundational version derived from the repository's version tags and configuration.

Related Issue

This PR addresses a feature request for exposing VersionSourceSemVer in output variables.
Resolves #4803

Motivation and Context

The Problem

GitVersion determines the version by identifying a "Base Version" (from a tag, merge message, or branch config) and then incrementally applying rules to calculate the new version. While we currently expose the distance from this base (via CommitsSinceVersionSource), the BaseVersion itself is internal. Users verify this "anchor" point only by reading verbose logs, making it difficult to debug why a specific version was calculated or to perform logic based on the version calculation's starting point.

Why VersionSourceSemVer Matters

  • Traceability & Debugging: It allows consumers to see exactly which version GitVersion selected as the anchor. This confirms whether the version is derived from the expected tag 1.0.0 or unexpectedly from a merge commit or branch configuration.
    Workflow Flexibility: In strict tag-based workflows (like GitFlow), VersionSourceSemVer often correlates to the "previous release," enabling scripts to generate diffs or changelogs from that point.
  • Consistency: It provides the missing "start" value to the existing "end" value (FullSemVer) and "distance" value (CommitsSinceVersionSource), completing the version calculation picture for CI/CD integrations.

Note: Since GitVersion supports multiple strategies (e.g., specific branch naming), VersionSourceSemVer represents the calculation baseline found by the strategy, which is not strictly always the historically previous release, but it is always the deterministic anchor for the current build.

Why This Change is Valuable

By exposing VersionSourceSemVer as a standard output variable, we:

  • Eliminate workarounds: Teams no longer need custom parsing logic
  • Improve consistency: All version components are available through the same interface
  • Enable new integrations: Simplifies integration with tools that need base version information
  • Follow principle of least surprise: If GitVersion calculates it, users should be able to access it

How Has This Been Tested?

Unit Tests: Added/updated tests to verify:

  • VersionSourceSemVer is included in output variable collections
  • Value is correctly propagated to all output channels
  • Backward compatibility with existing outputs

Verification Steps

  • Confirmed VersionSourceSemVer appears in all output formats
  • Verified value matches the internally calculated base version
  • Checked that existing output variables remain unchanged
  • Tested with different GitVersion configuration scenarios

Screenshots (if appropriate):

Example JSON output showing the new VersionSourceSemVer field:

{
  "Major": 5,
  "Minor": 12,
  "Patch": 0,
  "SemVer": "5.12.0-beta.1",
  "FullSemVer": "5.12.0-beta.1+42",
  ...
  "VersionSourceSemVer": "5.12.0",
  ...
}

Additional Notes

This change is purely additive - it introduces a new output variable without modifying any existing behavior or outputs. The risk of regression is minimal, and it opens up new integration possibilities for teams using GitVersion in their CI/CD pipelines.

Checklist:

  • My code follows the code style of this project.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have added tests to cover my changes.
  • All new and existing tests passed.

@jakublatkowski jakublatkowski changed the title Expose BaseSemVer as Output Variable [WIP] Expose BaseSemVer as Output Variable Jan 27, 2026
@jakublatkowski jakublatkowski changed the title [WIP] Expose BaseSemVer as Output Variable [WIP] Expose VersionSourceSemVer as Output Variable Jan 28, 2026
Copy link
Copy Markdown
Contributor

@HHobeck HHobeck left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you need to update the following source in docs/input/docs/reference/variable.md.

See: https://gitversion.net/docs/reference/variables

@arturcic
Copy link
Copy Markdown
Member

arturcic commented Feb 2, 2026

@jakublatkowski please make sure you rebase your branch onto main and not merge main into your branch

@jakublatkowski jakublatkowski marked this pull request as ready for review February 2, 2026 13:48
Copilot AI review requested due to automatic review settings February 2, 2026 13:48
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR exposes the VersionSourceSemVer variable as a standard output variable, making it available alongside existing version fields in environment variables, JSON output, and build agent-specific outputs. The VersionSourceSemVer represents the base semantic version calculated by GitVersion before any pre-release tags or metadata are applied.

Changes:

  • Added VersionSourceSemVer property to core data model classes (SemanticVersionBuildMetaData, SemanticVersionFormatValues, GitVersionVariables)
  • Updated version calculators to pass base version information instead of just commit references
  • Modified deployment mode calculator interface to accept IBaseVersion instead of ICommit?
  • Updated all test files and approved test outputs to include the new variable

Reviewed changes

Copilot reviewed 42 out of 42 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
src/GitVersion.Core/SemVer/SemanticVersionBuildMetaData.cs Added VersionSourceSemVer property and updated constructor signature to accept it as first parameter
src/GitVersion.Core/VersionCalculation/SemanticVersioning/SemanticVersionFormatValues.cs Added property to expose VersionSourceSemVer as string
src/GitVersion.Core/OutputVariables/GitVersionVariables.cs Added VersionSourceSemVer to the output variables record
src/GitVersion.Core/VersionCalculation/VariableProvider.cs Updated to pass VersionSourceSemVer when creating variables
src/GitVersion.Core/VersionCalculation/VersionCalculators/VersionCalculatorBase.cs Modified to accept IBaseVersion and extract semantic version from it
src/GitVersion.Core/VersionCalculation/VersionCalculators/*.cs Updated deployment mode calculators to use new IBaseVersion parameter
src/GitVersion.Core/VersionCalculation/Abstractions/IDeploymentModeCalculator.cs Changed interface to accept IBaseVersion instead of ICommit?
src/GitVersion.Core/PublicAPI.*.txt Documented breaking changes and new public API members
src/GitVersion.Output/Serializer/VersionVariablesJsonModel.cs Added VersionSourceSemVer to JSON output model
src/GitVersion.MsBuild/Tasks/GetVersion.cs Added VersionSourceSemVer output property to MSBuild task
src/GitVersion.MsBuild/PublicAPI.Unshipped.txt Documented new MSBuild task property
src/GitVersion.*.Tests/**/*.cs Updated all test files to use new constructor signature
src/GitVersion.*.Tests/**/Approved/*.txt Updated all approved test outputs to include new variable
docs/input/docs/reference/variables.md Added documentation for the new variable

@sonarqubecloud
Copy link
Copy Markdown

sonarqubecloud bot commented Feb 7, 2026

@arturcic arturcic changed the title [WIP] Expose VersionSourceSemVer as Output Variable Expose VersionSourceSemVer as Output Variable Feb 7, 2026
@arturcic arturcic merged commit f430ff6 into GitTools:main Feb 7, 2026
124 of 125 checks passed
corpo-iwillspeak pushed a commit to crispthinking/athena-dotnet-client that referenced this pull request Mar 30, 2026
[//]: # (dependabot-start)
⚠️  **Dependabot is rebasing this PR** ⚠️ 

Rebasing might not happen immediately, so don't worry if this takes some
time.

Note: if you make any changes to this PR yourself, they will take
precedence over the rebase.

---

[//]: # (dependabot-end)

Updated
[coverlet.collector](https://github.com/coverlet-coverage/coverlet) from
6.0.4 to 8.0.0.

<details>
<summary>Release notes</summary>

_Sourced from [coverlet.collector's
releases](https://github.com/coverlet-coverage/coverlet/releases)._

## 8.0.0

**Special Thanks:** A huge thank you to
[@​Bertk](https://github.com/Bertk) for driving the majority of the work
in this release! 🎉

### Fixed
- Fix System.CommandLine 2.0 release is available
[#​1776](https://github.com/coverlet-coverage/coverlet/issues/1776)
- Fix Excluding From Coverage bad defaults from given example
[#​1764](https://github.com/coverlet-coverage/coverlet/issues/1764)
- Fix branchpoint exclusion for sdk 8.0.407
[#​1741](https://github.com/coverlet-coverage/coverlet/issues/1741)
- Fix missing copyright information in NuGet
[#​1794](https://github.com/coverlet-coverage/coverlet/issues/1794)
- Fix bad default values in documentation
[#​1764](https://github.com/coverlet-coverage/coverlet/issues/1764) by
<https://github.com/cboudereau>

### Improvements

- Coverlet MTP extension feature
[#​1788](https://github.com/coverlet-coverage/coverlet/pull/1788)
- Generate SBOM for nuget packages
[#​1752](https://github.com/coverlet-coverage/coverlet/pull/1752)
- Use multi targets projects for coverlet.collector,
coverlet.msbuild.tasks packages
[#​1742](https://github.com/coverlet-coverage/coverlet/pull/1742)
- Use .NET 8.0 target framework for coverlet.core and remove
Newtonsoft.Json
[#​1733](https://github.com/coverlet-coverage/coverlet/pull/1733)
- Use latest System.CommandLine version
[#​1660](https://github.com/coverlet-coverage/coverlet/pull/1660)
- Upgraded minimum required .NET SDK and runtime to .NET 8.0 LTS (Long
Term Support) (**Breaking Change**)
- Use [xunit.v3](https://xunit.net/docs/getting-started/v3/whats-new)
for tests and example code

[Diff between 6.0.4 and
8.0.0](https://github.com/coverlet-coverage/coverlet/compare/v6.0.4...v8.0.0)

Commits viewable in [compare
view](https://github.com/coverlet-coverage/coverlet/compare/v6.0.4...v8.0.0).
</details>

Updated [dotenv.net](https://github.com/bolorundurowb/dotenv.net) from
4.0.0 to 4.0.1.

<details>
<summary>Release notes</summary>

_Sourced from [dotenv.net's
releases](https://github.com/bolorundurowb/dotenv.net/releases)._

## 4.0.1

## What's Changed
* chore/fix readme by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/35
* feature/add multi env support by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/36
* feature/split env reading from loading by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/37
* feature/add fluent api tests by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/38
* feature/update docs for v3 by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/39
* bug/fix missing env exception by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/41
* Removed unused reference to System.Memory package by @​Mondonno in
https://github.com/bolorundurowb/dotenv.net/pull/42
* docs(readme): fix probForEnv default value by @​caveman-dick in
https://github.com/bolorundurowb/dotenv.net/pull/44
* feature: enabled multi-line parsing of env files by @​VijoPlays in
https://github.com/bolorundurowb/dotenv.net/pull/49
* Revert "feature: enabled multi-line parsing of env files" by
@​bolorundurowb in https://github.com/bolorundurowb/dotenv.net/pull/50
* Feature: Added multi-line parsing via double quotes & Fix: Pipelines
by @​VijoPlays in https://github.com/bolorundurowb/dotenv.net/pull/52
* chore: fix typos in DotEnvOptions.cs by @​bobbyg603 in
https://github.com/bolorundurowb/dotenv.net/pull/55
* feature: Added support for multi-line variables separated by dots by
@​VijoPlays in https://github.com/bolorundurowb/dotenv.net/pull/54
* ft/support escaping trailing backslashes by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/62
* #​56 | fix exception path in probe for env by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/63
* ch/add OIDC proof tests by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/64
* ft/add export syntax support by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/65
* ft #​66: update method documentation by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/68

## New Contributors
* @​Mondonno made their first contribution in
https://github.com/bolorundurowb/dotenv.net/pull/42
* @​caveman-dick made their first contribution in
https://github.com/bolorundurowb/dotenv.net/pull/44
* @​VijoPlays made their first contribution in
https://github.com/bolorundurowb/dotenv.net/pull/49
* @​bobbyg603 made their first contribution in
https://github.com/bolorundurowb/dotenv.net/pull/55

**Full Changelog**:
https://github.com/bolorundurowb/dotenv.net/compare/v2.1.3...v4.0.1

Commits viewable in [compare
view](https://github.com/bolorundurowb/dotenv.net/commits/v4.0.1).
</details>

Updated [GitVersion.MsBuild](https://github.com/GitTools/GitVersion)
from 6.5.1 to 6.6.0.

<details>
<summary>Release notes</summary>

_Sourced from [GitVersion.MsBuild's
releases](https://github.com/GitTools/GitVersion/releases)._

## 6.6.0

__Documentation__

- [__#​4823__](https://github.com/GitTools/GitVersion/issues/4823)
Update docs to include `dnx` usage by
[arturcic](https://github.com/arturcic) resolved in
[__!4824__](https://github.com/GitTools/GitVersion/pull/4824) by
[copilot-swe-agent](https://github.com/apps/copilot-swe-agent)

__Features__

- [__!4804__](https://github.com/GitTools/GitVersion/pull/4804) Expose
VersionSourceSemVer as Output Variable by
[jakublatkowski](https://github.com/jakublatkowski)
- [__#​4808__](https://github.com/GitTools/GitVersion/issues/4808)
Renaming `CommitsSinceVersionSource` to `VersionSourceDistance` by
[arturcic](https://github.com/arturcic) resolved in
[__!4810__](https://github.com/GitTools/GitVersion/pull/4810) by
[copilot-swe-agent](https://github.com/apps/copilot-swe-agent)
- [__#​4814__](https://github.com/GitTools/GitVersion/issues/4814)
Expose the `VersionSourceIncrement` property in output variables by
[jakublatkowski](https://github.com/jakublatkowski) resolved in
[__!4815__](https://github.com/GitTools/GitVersion/pull/4815) by
[copilot-swe-agent](https://github.com/apps/copilot-swe-agent),
[__!4820__](https://github.com/GitTools/GitVersion/pull/4820) by
[jakublatkowski](https://github.com/jakublatkowski)

__Improvements__

- [__#​4418__](https://github.com/GitTools/GitVersion/issues/4418)
[ISSUE]: GitVersion sometimes takes several hours, seemingly hanging for
several minutes between steps by
[ChristoWolf](https://github.com/ChristoWolf) resolved in
[__!4809__](https://github.com/GitTools/GitVersion/pull/4809) by
[sanelson](https://github.com/sanelson)
- [__!4789__](https://github.com/GitTools/GitVersion/pull/4789) Support
integer formatting with specifiers D and B by
[BCSharp](https://github.com/BCSharp) raised in
[__#​4788__](https://github.com/GitTools/GitVersion/issues/4788) by
[BCSharp](https://github.com/BCSharp)
- [__!4812__](https://github.com/GitTools/GitVersion/pull/4812)
refactor(serializer): utilize source-generated JSON context for seria…
by [arturcic](https://github.com/arturcic)
- [__!4817__](https://github.com/GitTools/GitVersion/pull/4817)
refactor(gitversion-variables): Standardize output variable order by
[arturcic](https://github.com/arturcic)

As part of this release we had [131
commits](https://github.com/GitTools/GitVersion/compare/6.5.1...6.6.0)
which resulted in [37
issues](https://github.com/GitTools/GitVersion/milestone/81?closed=1)
being closed.

__Bugs__

- [__#​4056__](https://github.com/GitTools/GitVersion/issues/4056)
[ISSUE]: NotImplementedException in TrunkBased-Workflow by
[steven-r](https://github.com/steven-r) resolved in
[__!4793__](https://github.com/GitTools/GitVersion/pull/4793) by
[HHobeck](https://github.com/HHobeck)
- [__#​4795__](https://github.com/GitTools/GitVersion/issues/4795)
[ISSUE]: "track-merge-target: false" reads tag from other branch by
[Ult0r](https://github.com/Ult0r) resolved in
[__!4796__](https://github.com/GitTools/GitVersion/pull/4796) by
[HHobeck](https://github.com/HHobeck)

__Dependencies__

- [__!4766__](https://github.com/GitTools/GitVersion/pull/4766) (docs
deps): Bump mdast-util-to-hast from 13.0.2 to 13.2.1 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4768__](https://github.com/GitTools/GitVersion/pull/4768) (build
deps): Bump jetbrains/qodana-action from 2025.2.2 to 2025.2.3 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4769__](https://github.com/GitTools/GitVersion/pull/4769) (deps):
Bump NUnit3TestAdapter from 5.2.0 to 6.0.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4770__](https://github.com/GitTools/GitVersion/pull/4770) (deps):
Bump NUnit3TestAdapter from 5.2.0 to 6.0.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4771__](https://github.com/GitTools/GitVersion/pull/4771) (deps):
Bump JsonSchema.Net.Generation from 5.1.1 to 6.0.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4772__](https://github.com/GitTools/GitVersion/pull/4772) (sdk):
Bump dotnet-sdk from 10.0.100 to 10.0.101 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4774__](https://github.com/GitTools/GitVersion/pull/4774) (deps):
Bump Microsoft.Extensions.DependencyInjection.Abstractions and 3 others
by [dependabot[bot]](https://github.com/apps/dependabot)
- [__!4775__](https://github.com/GitTools/GitVersion/pull/4775) (build
deps): Bump jetbrains/qodana-action from 2025.2.3 to 2025.2.4 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4777__](https://github.com/GitTools/GitVersion/pull/4777) (deps):
Bump the microsoft group with 9 updates by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4778__](https://github.com/GitTools/GitVersion/pull/4778) (deps):
Bump Cake.Codecov from 3.0.0 to 3.0.1 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4780__](https://github.com/GitTools/GitVersion/pull/4780) (build
deps): Bump actions/cache from 4 to 5 in the actions group by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4781__](https://github.com/GitTools/GitVersion/pull/4781) (deps):
Bump Cake.Codecov from 3.0.1 to 6.0.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4783__](https://github.com/GitTools/GitVersion/pull/4783) (build
deps): Bump the actions group with 2 updates by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4784__](https://github.com/GitTools/GitVersion/pull/4784) (deps):
Bump NUnit3TestAdapter from 5.2.0 to 6.0.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4786__](https://github.com/GitTools/GitVersion/pull/4786) (deps):
Bump NUnit3TestAdapter from 5.2.0 to 6.0.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4787__](https://github.com/GitTools/GitVersion/pull/4787) (deps):
Bump JunitXml.TestLogger from 7.0.2 to 7.1.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4790__](https://github.com/GitTools/GitVersion/pull/4790) (deps):
Bump the analyzers group with 2 updates by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4791__](https://github.com/GitTools/GitVersion/pull/4791) (deps):
Bump NUnit3TestAdapter from 5.2.0 to 6.1.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4792__](https://github.com/GitTools/GitVersion/pull/4792) (build
deps): Bump jetbrains/qodana-action from 2025.2.4 to 2025.3.1 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4798__](https://github.com/GitTools/GitVersion/pull/4798) (deps):
Bump the microsoft group with 1 update by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4799__](https://github.com/GitTools/GitVersion/pull/4799) (deps):
Bump JunitXml.TestLogger from 7.1.0 to 8.0.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4800__](https://github.com/GitTools/GitVersion/pull/4800) (sdk):
Bump dotnet-sdk from 10.0.101 to 10.0.102 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4801__](https://github.com/GitTools/GitVersion/pull/4801) (deps):
Bump the microsoft group with 11 updates by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4811__](https://github.com/GitTools/GitVersion/pull/4811) (deps):
Bump JsonSchema.Net.Generation from 6.0.0 to 7.0.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
 ... (truncated)

Commits viewable in [compare
view](https://github.com/GitTools/GitVersion/compare/6.5.1...6.6.0).
</details>

Updated [Grpc.Net.Client](https://github.com/grpc/grpc-dotnet) from
2.71.0 to 2.76.0.

<details>
<summary>Release notes</summary>

_Sourced from [Grpc.Net.Client's
releases](https://github.com/grpc/grpc-dotnet/releases)._

## 2.76.0

## What's Changed
* Remove reference to obsolete property from Readme and mention
alternative by @​KnapSac in
https://github.com/grpc/grpc-dotnet/pull/2631
* Migrate from sln to slnx by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2635
* Bump tar-fs from 3.0.8 to 3.0.9 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot[bot] in
https://github.com/grpc/grpc-dotnet/pull/2636
* MapGrpcService with service definition refactor by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2634
* Bump brace-expansion from 1.1.11 to 1.1.12 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot[bot] in
https://github.com/grpc/grpc-dotnet/pull/2639
* Fix shared code by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2640
* Bump pbkdf2 from 3.1.2 to 3.1.3 in /examples/Spar/Server/ClientApp by
@​dependabot[bot] in https://github.com/grpc/grpc-dotnet/pull/2642
* Add protobuf-net code-first to README.md by @​weitzhandler in
https://github.com/grpc/grpc-dotnet/pull/2644
* Add more options to perf client by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2648
* Update docs and starvs for slnx by @​MihaZupan in
https://github.com/grpc/grpc-dotnet/pull/2649
* Support reading compressed grpc-web trailing headers by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2650
* Add .NET 10 target by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2653
* Update project.json packages and examples by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2658
* Bump tar-fs from 3.1.0 to 3.1.1 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot[bot] in
https://github.com/grpc/grpc-dotnet/pull/2668
* Update Grpc.Tools dependency to latest version by @​apolcyn in
https://github.com/grpc/grpc-dotnet/pull/2675
* Update version on v2.76.x to 2.76.0-pre1 by @​apolcyn in
https://github.com/grpc/grpc-dotnet/pull/2676
* Prep for stable release by @​asheshvidyut in
https://github.com/grpc/grpc-dotnet/pull/2682

## New Contributors
* @​KnapSac made their first contribution in
https://github.com/grpc/grpc-dotnet/pull/2631
* @​weitzhandler made their first contribution in
https://github.com/grpc/grpc-dotnet/pull/2644
* @​MihaZupan made their first contribution in
https://github.com/grpc/grpc-dotnet/pull/2649
* @​asheshvidyut made their first contribution in
https://github.com/grpc/grpc-dotnet/pull/2682

**Full Changelog**:
https://github.com/grpc/grpc-dotnet/compare/v2.71.0...v2.76.0

## 2.76.0-pre1

## What's Changed
* Remove reference to obsolete property from Readme and mention
alternative by @​KnapSac in
https://github.com/grpc/grpc-dotnet/pull/2631
* Migrate from sln to slnx by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2635
* Bump tar-fs from 3.0.8 to 3.0.9 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot[bot] in
https://github.com/grpc/grpc-dotnet/pull/2636
* MapGrpcService with service definition refactor by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2634
* Bump brace-expansion from 1.1.11 to 1.1.12 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot[bot] in
https://github.com/grpc/grpc-dotnet/pull/2639
* Fix shared code by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2640
* Bump pbkdf2 from 3.1.2 to 3.1.3 in /examples/Spar/Server/ClientApp by
@​dependabot[bot] in https://github.com/grpc/grpc-dotnet/pull/2642
* Add protobuf-net code-first to README.md by @​weitzhandler in
https://github.com/grpc/grpc-dotnet/pull/2644
* Add more options to perf client by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2648
* Update docs and starvs for slnx by @​MihaZupan in
https://github.com/grpc/grpc-dotnet/pull/2649
* Support reading compressed grpc-web trailing headers by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2650
* Add .NET 10 target by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2653
* Update project.json packages and examples by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2658
* Bump tar-fs from 3.1.0 to 3.1.1 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot[bot] in
https://github.com/grpc/grpc-dotnet/pull/2668
* Update Grpc.Tools dependency to latest version by @​apolcyn in
https://github.com/grpc/grpc-dotnet/pull/2675
* Update version on v2.76.x to 2.76.0-pre1 by @​apolcyn in
https://github.com/grpc/grpc-dotnet/pull/2676

## New Contributors
* @​KnapSac made their first contribution in
https://github.com/grpc/grpc-dotnet/pull/2631
* @​weitzhandler made their first contribution in
https://github.com/grpc/grpc-dotnet/pull/2644
* @​MihaZupan made their first contribution in
https://github.com/grpc/grpc-dotnet/pull/2649

**Full Changelog**:
https://github.com/grpc/grpc-dotnet/compare/v2.71.0...v2.76.0-pre1

Commits viewable in [compare
view](https://github.com/grpc/grpc-dotnet/compare/v2.71.0...v2.76.0).
</details>

Updated
[Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/dotnet)
from 10.0.1 to 10.0.5.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.DependencyInjection's
releases](https://github.com/dotnet/dotnet/releases)._

No release notes found for this version range.

Commits viewable in [compare
view](https://github.com/dotnet/dotnet/commits).
</details>

Updated [Microsoft.Extensions.Http](https://github.com/dotnet/dotnet)
from 9.0.9 to 10.0.5.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.Http's
releases](https://github.com/dotnet/dotnet/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.103` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.6.25358.103/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.6.25358.103/README.md#building-from-released-sources).

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.114` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.5.25277.114/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.5.25277.114/README.md#building-from-released-sources).

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.110` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.4.25258.110/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.4.25258.110/README.md#building-from-released-sources).

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.5` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.3.25171.5/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.3.25171.5/README.md#building-from-released-sources).

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.2` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.2.25163.2/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.2.25163.2/README.md#building-from-released-sources).

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.5` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.1.25080.5/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.1.25080.5/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.115` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.115/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.115/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.114` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.114/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.114/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.113` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.113/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.113/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.112` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.112/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.112/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.111` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.111/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.111/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.110` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.110/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.110/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.109` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.109/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.109/README.md#building-from-released-sources).

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.101` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.101/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.101/README.md#building-from-released-sources).

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](https://github.com/dotnet/dotnet/commits).
</details>

Updated [Microsoft.Extensions.Options](https://github.com/dotnet/dotnet)
from 9.0.9 to 10.0.5.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.Options's
releases](https://github.com/dotnet/dotnet/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.103` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.6.25358.103/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.6.25358.103/README.md#building-from-released-sources).

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.114` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.5.25277.114/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.5.25277.114/README.md#building-from-released-sources).

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.110` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.4.25258.110/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.4.25258.110/README.md#building-from-released-sources).

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.5` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.3.25171.5/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.3.25171.5/README.md#building-from-released-sources).

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.2` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.2.25163.2/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.2.25163.2/README.md#building-from-released-sources).

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.5` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.1.25080.5/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.1.25080.5/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.115` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.115/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.115/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.114` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.114/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.114/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.113` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.113/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.113/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.112` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.112/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.112/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.111` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.111/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.111/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.110` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.110/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.110/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.109` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.109/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.109/README.md#building-from-released-sources).

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.101` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.101/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.101/README.md#building-from-released-sources).

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](https://github.com/dotnet/dotnet/commits).
</details>

Updated [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest)
from 18.0.1 to 18.3.0.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.NET.Test.Sdk's
releases](https://github.com/microsoft/vstest/releases)._

## 18.3.0

## What's Changed

* Fix answer file splitting by @​nohwnd in
https://github.com/microsoft/vstest/pull/15306

## Internal fixes and updates

* Bump branding to 18.1 by @​nohwnd in
https://github.com/microsoft/vstest/pull/15286
* Remove stale copy of S.ComponentModel.Composition from testplatform
packages by @​ViktorHofer in
https://github.com/microsoft/vstest/pull/15287
* Update codeflow metadata to fix backflow by @​premun in
https://github.com/microsoft/vstest/pull/15291
* [main] Update dependencies from devdiv/DevDiv/vs-code-coverage by
@​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15283
* Update Microsoft.Build.Utilities.Core by @​Youssef1313 in
https://github.com/microsoft/vstest/pull/15300
* Disable DynamicNative instrumentation by default by @​nohwnd in
https://github.com/microsoft/vstest/pull/15299
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in https://github.com/microsoft/vstest/pull/15293
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in https://github.com/microsoft/vstest/pull/15302
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in https://github.com/microsoft/vstest/pull/15314
* Delete sha1 custom implementation we are not using for a long time by
@​nohwnd in https://github.com/microsoft/vstest/pull/15313
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in https://github.com/microsoft/vstest/pull/15315
* Update branding to 18.3.0 by @​nohwnd in
https://github.com/microsoft/vstest/pull/15321
* [main] Update dependencies from devdiv/DevDiv/vs-code-coverage by
@​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15325
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in https://github.com/microsoft/vstest/pull/15264
* Revert adding dotnet_host_path workaround by @​nohwnd in
https://github.com/microsoft/vstest/pull/15328
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in https://github.com/microsoft/vstest/pull/15338
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in https://github.com/microsoft/vstest/pull/15322
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in https://github.com/microsoft/vstest/pull/15343
* Change PreReleaseVersionLabel from 'preview' to 'release' by @​nohwnd
in https://github.com/microsoft/vstest/pull/15352
* [rel/18.3] Update dependencies from devdiv/DevDiv/vs-code-coverage by
@​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15354
* [rel/18.3] Update dependencies from dotnet/arcade by
@​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15389
* [rel/18.3] Update dependencies from dotnet/arcade by
@​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15400
* Update build tools to 17.11.48 to be source buildable by @​nohwnd in
https://github.com/microsoft/vstest/pull/15310
* Disable publishing on RTM by @​nohwnd in
https://github.com/microsoft/vstest/pull/15296
* Don't access nuget.org for package feeds by @​nohwnd in
https://github.com/microsoft/vstest/pull/15316
* No nuget access fix tests by @​nohwnd in
https://github.com/microsoft/vstest/pull/15317
* Disable Dependabot updates in dependabot.yml by @​mmitche in
https://github.com/microsoft/vstest/pull/15324

## New Contributors
* @​premun made their first contribution in
https://github.com/microsoft/vstest/pull/15291

Commits viewable in [compare
view](https://github.com/microsoft/vstest/compare/v18.0.1...v18.3.0).
</details>

Updated
[ResolverAthena.Grpc.Client](https://github.com/crispthinking/athena-dotnet-models)
from 0.7.0 to 1.0.0.

<details>
<summary>Release notes</summary>

_Sourced from [ResolverAthena.Grpc.Client's
releases](https://github.com/crispthinking/athena-dotnet-models/releases)._

## 1.0.0

## What's Changed
* Bump actions/download-artifact from 6 to 7 by @​dependabot[bot] in
https://github.com/crispthinking/athena-dotnet-models/pull/7
* Bump actions/upload-artifact from 5 to 6 by @​dependabot[bot] in
https://github.com/crispthinking/athena-dotnet-models/pull/6
* Bump actions/checkout from 5 to 6 by @​dependabot[bot] in
https://github.com/crispthinking/athena-dotnet-models/pull/5
* feat: Bump athena-protobufs submodule to deprecate BRG format by
@​iwillspeak in
https://github.com/crispthinking/athena-dotnet-models/pull/8

## New Contributors
* @​dependabot[bot] made their first contribution in
https://github.com/crispthinking/athena-dotnet-models/pull/7
* @​iwillspeak made their first contribution in
https://github.com/crispthinking/athena-dotnet-models/pull/8

**Full Changelog**:
https://github.com/crispthinking/athena-dotnet-models/compare/v0.7.0...v1.0.0

Commits viewable in [compare
view](https://github.com/crispthinking/athena-dotnet-models/compare/v0.7.0...v1.0.0).
</details>

Updated [System.CommandLine](https://github.com/dotnet/dotnet) from
2.0.0-rc.1.25451.107 to 2.0.5.

<details>
<summary>Release notes</summary>

_Sourced from [System.CommandLine's
releases](https://github.com/dotnet/dotnet/releases)._

No release notes found for this version range.

Commits viewable in [compare
view](https://github.com/dotnet/dotnet/commits).
</details>

Updated
[System.Threading.Tasks.Dataflow](https://github.com/dotnet/dotnet) from
8.0.1 to 10.0.5.

<details>
<summary>Release notes</summary>

_Sourced from [System.Threading.Tasks.Dataflow's
releases](https://github.com/dotnet/dotnet/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.103` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.6.25358.103/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.6.25358.103/README.md#building-from-released-sources).

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.114` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.5.25277.114/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.5.25277.114/README.md#building-from-released-sources).

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.110` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.4.25258.110/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.4.25258.110/README.md#building-from-released-sources).

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.5` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.3.25171.5/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.3.25171.5/README.md#building-from-released-sources).

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.2` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.2.25163.2/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.2.25163.2/README.md#building-from-released-sources).

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.5` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.1.25080.5/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.1.25080.5/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.115` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.115/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.115/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.114` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.114/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.114/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.113` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.113/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.113/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.112` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.112/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.112/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.111` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.111/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.111/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.110` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.110/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.110/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.109` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.109/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.109/README.md#building-from-released-sources).

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.101` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.101/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.101/README.md#building-from-released-sources).

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.7

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.7` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.7/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.7/README.md#building-from-released-sources).

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.6

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.6` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.6/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.6/README.md#building-from-released-sources).

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.5

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.5` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.5/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.5/README.md#building-from-released-sources).

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.4

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.4` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.4/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.4/README.md#building-from-released-sources).

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.3

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.3` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.3/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.3/README.md#building-from-released-sources).

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.2

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.2` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.2/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.2/README.md#building-from-released-sources).

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.1

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.1` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.1/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.1/README.md#building-from-released-sources).

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.0

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.0` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.0/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.0/README.md#building-from-released-sources).

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.0-rc.2.24473.5

You can build NET 9.0 RC2 from the repository by cloning the release tag
`v9.0.0-rc.2.24473.5` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.0-rc.2.24473.5/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.0-rc.2.24473.5/README.md#building-from-released-sources).

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.0-rc.1.24431.7

You can build .NET 9.0 RC1 from the repository by cloning the release
tag `v9.0.0-rc.1.24431.7` and following the build instructions in the
[main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.0-rc.1.24431.7/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.0-rc.1.24431.7/README.md#building-from-released-sources).

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.0-preview.7.24405.7

You can build .NET 9.0 Preview 7 from the repository by cloning the
release tag `v9.0.0-preview.7.24405.7` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.7.24405.7/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.7.24405.7/README.md#building-from-released-sources).

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.0-preview.6.24327.7

You can build .NET 9.0 Preview 6 from the repository by cloning the
release tag `v9.0.0-preview.6.24327.7` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.6.24327.7/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.6.24327.7/README.md#building-from-released-sources).

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.0-preview.5.24306.7

You can build .NET 9.0 Preview 5 from the repository by cloning the
release tag `v9.0.0-preview.5.24306.7` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.5.24306.7/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.5.24306.7/README.md#building-from-released-sources).

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.0-preview.4.24266.19

You can build .NET 9.0 Preview 4 from the repository by cloning the
release tag `v9.0.0-preview.4.24266.19` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.4.24266.19/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.0-p…
corpo-iwillspeak pushed a commit to crispthinking/athena-dotnet-client that referenced this pull request Mar 30, 2026
[//]: # (dependabot-start)
⚠️  **Dependabot is rebasing this PR** ⚠️ 

Rebasing might not happen immediately, so don't worry if this takes some
time.

Note: if you make any changes to this PR yourself, they will take
precedence over the rebase.

---

[//]: # (dependabot-end)

Updated
[coverlet.collector](https://github.com/coverlet-coverage/coverlet) from
6.0.4 to 8.0.0.

<details>
<summary>Release notes</summary>

_Sourced from [coverlet.collector's
releases](https://github.com/coverlet-coverage/coverlet/releases)._

## 8.0.0

**Special Thanks:** A huge thank you to
[@​Bertk](https://github.com/Bertk) for driving the majority of the work
in this release! 🎉

### Fixed
- Fix System.CommandLine 2.0 release is available
[#​1776](https://github.com/coverlet-coverage/coverlet/issues/1776)
- Fix Excluding From Coverage bad defaults from given example
[#​1764](https://github.com/coverlet-coverage/coverlet/issues/1764)
- Fix branchpoint exclusion for sdk 8.0.407
[#​1741](https://github.com/coverlet-coverage/coverlet/issues/1741)
- Fix missing copyright information in NuGet
[#​1794](https://github.com/coverlet-coverage/coverlet/issues/1794)
- Fix bad default values in documentation
[#​1764](https://github.com/coverlet-coverage/coverlet/issues/1764) by
<https://github.com/cboudereau>

### Improvements

- Coverlet MTP extension feature
[#​1788](https://github.com/coverlet-coverage/coverlet/pull/1788)
- Generate SBOM for nuget packages
[#​1752](https://github.com/coverlet-coverage/coverlet/pull/1752)
- Use multi targets projects for coverlet.collector,
coverlet.msbuild.tasks packages
[#​1742](https://github.com/coverlet-coverage/coverlet/pull/1742)
- Use .NET 8.0 target framework for coverlet.core and remove
Newtonsoft.Json
[#​1733](https://github.com/coverlet-coverage/coverlet/pull/1733)
- Use latest System.CommandLine version
[#​1660](https://github.com/coverlet-coverage/coverlet/pull/1660)
- Upgraded minimum required .NET SDK and runtime to .NET 8.0 LTS (Long
Term Support) (**Breaking Change**)
- Use [xunit.v3](https://xunit.net/docs/getting-started/v3/whats-new)
for tests and example code

[Diff between 6.0.4 and
8.0.0](https://github.com/coverlet-coverage/coverlet/compare/v6.0.4...v8.0.0)

Commits viewable in [compare
view](https://github.com/coverlet-coverage/coverlet/compare/v6.0.4...v8.0.0).
</details>

Updated [dotenv.net](https://github.com/bolorundurowb/dotenv.net) from
4.0.0 to 4.0.1.

<details>
<summary>Release notes</summary>

_Sourced from [dotenv.net's
releases](https://github.com/bolorundurowb/dotenv.net/releases)._

## 4.0.1

## What's Changed
* chore/fix readme by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/35
* feature/add multi env support by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/36
* feature/split env reading from loading by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/37
* feature/add fluent api tests by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/38
* feature/update docs for v3 by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/39
* bug/fix missing env exception by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/41
* Removed unused reference to System.Memory package by @​Mondonno in
https://github.com/bolorundurowb/dotenv.net/pull/42
* docs(readme): fix probForEnv default value by @​caveman-dick in
https://github.com/bolorundurowb/dotenv.net/pull/44
* feature: enabled multi-line parsing of env files by @​VijoPlays in
https://github.com/bolorundurowb/dotenv.net/pull/49
* Revert "feature: enabled multi-line parsing of env files" by
@​bolorundurowb in https://github.com/bolorundurowb/dotenv.net/pull/50
* Feature: Added multi-line parsing via double quotes & Fix: Pipelines
by @​VijoPlays in https://github.com/bolorundurowb/dotenv.net/pull/52
* chore: fix typos in DotEnvOptions.cs by @​bobbyg603 in
https://github.com/bolorundurowb/dotenv.net/pull/55
* feature: Added support for multi-line variables separated by dots by
@​VijoPlays in https://github.com/bolorundurowb/dotenv.net/pull/54
* ft/support escaping trailing backslashes by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/62
* #​56 | fix exception path in probe for env by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/63
* ch/add OIDC proof tests by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/64
* ft/add export syntax support by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/65
* ft #​66: update method documentation by @​bolorundurowb in
https://github.com/bolorundurowb/dotenv.net/pull/68

## New Contributors
* @​Mondonno made their first contribution in
https://github.com/bolorundurowb/dotenv.net/pull/42
* @​caveman-dick made their first contribution in
https://github.com/bolorundurowb/dotenv.net/pull/44
* @​VijoPlays made their first contribution in
https://github.com/bolorundurowb/dotenv.net/pull/49
* @​bobbyg603 made their first contribution in
https://github.com/bolorundurowb/dotenv.net/pull/55

**Full Changelog**:
https://github.com/bolorundurowb/dotenv.net/compare/v2.1.3...v4.0.1

Commits viewable in [compare
view](https://github.com/bolorundurowb/dotenv.net/commits/v4.0.1).
</details>

Updated [GitVersion.MsBuild](https://github.com/GitTools/GitVersion)
from 6.5.1 to 6.6.0.

<details>
<summary>Release notes</summary>

_Sourced from [GitVersion.MsBuild's
releases](https://github.com/GitTools/GitVersion/releases)._

## 6.6.0

__Documentation__

- [__#​4823__](https://github.com/GitTools/GitVersion/issues/4823)
Update docs to include `dnx` usage by
[arturcic](https://github.com/arturcic) resolved in
[__!4824__](https://github.com/GitTools/GitVersion/pull/4824) by
[copilot-swe-agent](https://github.com/apps/copilot-swe-agent)

__Features__

- [__!4804__](https://github.com/GitTools/GitVersion/pull/4804) Expose
VersionSourceSemVer as Output Variable by
[jakublatkowski](https://github.com/jakublatkowski)
- [__#​4808__](https://github.com/GitTools/GitVersion/issues/4808)
Renaming `CommitsSinceVersionSource` to `VersionSourceDistance` by
[arturcic](https://github.com/arturcic) resolved in
[__!4810__](https://github.com/GitTools/GitVersion/pull/4810) by
[copilot-swe-agent](https://github.com/apps/copilot-swe-agent)
- [__#​4814__](https://github.com/GitTools/GitVersion/issues/4814)
Expose the `VersionSourceIncrement` property in output variables by
[jakublatkowski](https://github.com/jakublatkowski) resolved in
[__!4815__](https://github.com/GitTools/GitVersion/pull/4815) by
[copilot-swe-agent](https://github.com/apps/copilot-swe-agent),
[__!4820__](https://github.com/GitTools/GitVersion/pull/4820) by
[jakublatkowski](https://github.com/jakublatkowski)

__Improvements__

- [__#​4418__](https://github.com/GitTools/GitVersion/issues/4418)
[ISSUE]: GitVersion sometimes takes several hours, seemingly hanging for
several minutes between steps by
[ChristoWolf](https://github.com/ChristoWolf) resolved in
[__!4809__](https://github.com/GitTools/GitVersion/pull/4809) by
[sanelson](https://github.com/sanelson)
- [__!4789__](https://github.com/GitTools/GitVersion/pull/4789) Support
integer formatting with specifiers D and B by
[BCSharp](https://github.com/BCSharp) raised in
[__#​4788__](https://github.com/GitTools/GitVersion/issues/4788) by
[BCSharp](https://github.com/BCSharp)
- [__!4812__](https://github.com/GitTools/GitVersion/pull/4812)
refactor(serializer): utilize source-generated JSON context for seria…
by [arturcic](https://github.com/arturcic)
- [__!4817__](https://github.com/GitTools/GitVersion/pull/4817)
refactor(gitversion-variables): Standardize output variable order by
[arturcic](https://github.com/arturcic)

As part of this release we had [131
commits](https://github.com/GitTools/GitVersion/compare/6.5.1...6.6.0)
which resulted in [37
issues](https://github.com/GitTools/GitVersion/milestone/81?closed=1)
being closed.

__Bugs__

- [__#​4056__](https://github.com/GitTools/GitVersion/issues/4056)
[ISSUE]: NotImplementedException in TrunkBased-Workflow by
[steven-r](https://github.com/steven-r) resolved in
[__!4793__](https://github.com/GitTools/GitVersion/pull/4793) by
[HHobeck](https://github.com/HHobeck)
- [__#​4795__](https://github.com/GitTools/GitVersion/issues/4795)
[ISSUE]: "track-merge-target: false" reads tag from other branch by
[Ult0r](https://github.com/Ult0r) resolved in
[__!4796__](https://github.com/GitTools/GitVersion/pull/4796) by
[HHobeck](https://github.com/HHobeck)

__Dependencies__

- [__!4766__](https://github.com/GitTools/GitVersion/pull/4766) (docs
deps): Bump mdast-util-to-hast from 13.0.2 to 13.2.1 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4768__](https://github.com/GitTools/GitVersion/pull/4768) (build
deps): Bump jetbrains/qodana-action from 2025.2.2 to 2025.2.3 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4769__](https://github.com/GitTools/GitVersion/pull/4769) (deps):
Bump NUnit3TestAdapter from 5.2.0 to 6.0.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4770__](https://github.com/GitTools/GitVersion/pull/4770) (deps):
Bump NUnit3TestAdapter from 5.2.0 to 6.0.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4771__](https://github.com/GitTools/GitVersion/pull/4771) (deps):
Bump JsonSchema.Net.Generation from 5.1.1 to 6.0.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4772__](https://github.com/GitTools/GitVersion/pull/4772) (sdk):
Bump dotnet-sdk from 10.0.100 to 10.0.101 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4774__](https://github.com/GitTools/GitVersion/pull/4774) (deps):
Bump Microsoft.Extensions.DependencyInjection.Abstractions and 3 others
by [dependabot[bot]](https://github.com/apps/dependabot)
- [__!4775__](https://github.com/GitTools/GitVersion/pull/4775) (build
deps): Bump jetbrains/qodana-action from 2025.2.3 to 2025.2.4 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4777__](https://github.com/GitTools/GitVersion/pull/4777) (deps):
Bump the microsoft group with 9 updates by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4778__](https://github.com/GitTools/GitVersion/pull/4778) (deps):
Bump Cake.Codecov from 3.0.0 to 3.0.1 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4780__](https://github.com/GitTools/GitVersion/pull/4780) (build
deps): Bump actions/cache from 4 to 5 in the actions group by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4781__](https://github.com/GitTools/GitVersion/pull/4781) (deps):
Bump Cake.Codecov from 3.0.1 to 6.0.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4783__](https://github.com/GitTools/GitVersion/pull/4783) (build
deps): Bump the actions group with 2 updates by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4784__](https://github.com/GitTools/GitVersion/pull/4784) (deps):
Bump NUnit3TestAdapter from 5.2.0 to 6.0.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4786__](https://github.com/GitTools/GitVersion/pull/4786) (deps):
Bump NUnit3TestAdapter from 5.2.0 to 6.0.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4787__](https://github.com/GitTools/GitVersion/pull/4787) (deps):
Bump JunitXml.TestLogger from 7.0.2 to 7.1.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4790__](https://github.com/GitTools/GitVersion/pull/4790) (deps):
Bump the analyzers group with 2 updates by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4791__](https://github.com/GitTools/GitVersion/pull/4791) (deps):
Bump NUnit3TestAdapter from 5.2.0 to 6.1.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4792__](https://github.com/GitTools/GitVersion/pull/4792) (build
deps): Bump jetbrains/qodana-action from 2025.2.4 to 2025.3.1 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4798__](https://github.com/GitTools/GitVersion/pull/4798) (deps):
Bump the microsoft group with 1 update by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4799__](https://github.com/GitTools/GitVersion/pull/4799) (deps):
Bump JunitXml.TestLogger from 7.1.0 to 8.0.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4800__](https://github.com/GitTools/GitVersion/pull/4800) (sdk):
Bump dotnet-sdk from 10.0.101 to 10.0.102 by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4801__](https://github.com/GitTools/GitVersion/pull/4801) (deps):
Bump the microsoft group with 11 updates by
[dependabot[bot]](https://github.com/apps/dependabot)
- [__!4811__](https://github.com/GitTools/GitVersion/pull/4811) (deps):
Bump JsonSchema.Net.Generation from 6.0.0 to 7.0.0 by
[dependabot[bot]](https://github.com/apps/dependabot)
 ... (truncated)

Commits viewable in [compare
view](https://github.com/GitTools/GitVersion/compare/6.5.1...6.6.0).
</details>

Pinned [Grpc.Net.Client](https://github.com/grpc/grpc-dotnet) at 2.76.0.

<details>
<summary>Release notes</summary>

_Sourced from [Grpc.Net.Client's
releases](https://github.com/grpc/grpc-dotnet/releases)._

## 2.76.0

## What's Changed
* Remove reference to obsolete property from Readme and mention
alternative by @​KnapSac in
https://github.com/grpc/grpc-dotnet/pull/2631
* Migrate from sln to slnx by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2635
* Bump tar-fs from 3.0.8 to 3.0.9 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot[bot] in
https://github.com/grpc/grpc-dotnet/pull/2636
* MapGrpcService with service definition refactor by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2634
* Bump brace-expansion from 1.1.11 to 1.1.12 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot[bot] in
https://github.com/grpc/grpc-dotnet/pull/2639
* Fix shared code by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2640
* Bump pbkdf2 from 3.1.2 to 3.1.3 in /examples/Spar/Server/ClientApp by
@​dependabot[bot] in https://github.com/grpc/grpc-dotnet/pull/2642
* Add protobuf-net code-first to README.md by @​weitzhandler in
https://github.com/grpc/grpc-dotnet/pull/2644
* Add more options to perf client by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2648
* Update docs and starvs for slnx by @​MihaZupan in
https://github.com/grpc/grpc-dotnet/pull/2649
* Support reading compressed grpc-web trailing headers by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2650
* Add .NET 10 target by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2653
* Update project.json packages and examples by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2658
* Bump tar-fs from 3.1.0 to 3.1.1 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot[bot] in
https://github.com/grpc/grpc-dotnet/pull/2668
* Update Grpc.Tools dependency to latest version by @​apolcyn in
https://github.com/grpc/grpc-dotnet/pull/2675
* Update version on v2.76.x to 2.76.0-pre1 by @​apolcyn in
https://github.com/grpc/grpc-dotnet/pull/2676
* Prep for stable release by @​asheshvidyut in
https://github.com/grpc/grpc-dotnet/pull/2682

## New Contributors
* @​KnapSac made their first contribution in
https://github.com/grpc/grpc-dotnet/pull/2631
* @​weitzhandler made their first contribution in
https://github.com/grpc/grpc-dotnet/pull/2644
* @​MihaZupan made their first contribution in
https://github.com/grpc/grpc-dotnet/pull/2649
* @​asheshvidyut made their first contribution in
https://github.com/grpc/grpc-dotnet/pull/2682

**Full Changelog**:
https://github.com/grpc/grpc-dotnet/compare/v2.71.0...v2.76.0

## 2.76.0-pre1

## What's Changed
* Remove reference to obsolete property from Readme and mention
alternative by @​KnapSac in
https://github.com/grpc/grpc-dotnet/pull/2631
* Migrate from sln to slnx by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2635
* Bump tar-fs from 3.0.8 to 3.0.9 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot[bot] in
https://github.com/grpc/grpc-dotnet/pull/2636
* MapGrpcService with service definition refactor by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2634
* Bump brace-expansion from 1.1.11 to 1.1.12 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot[bot] in
https://github.com/grpc/grpc-dotnet/pull/2639
* Fix shared code by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2640
* Bump pbkdf2 from 3.1.2 to 3.1.3 in /examples/Spar/Server/ClientApp by
@​dependabot[bot] in https://github.com/grpc/grpc-dotnet/pull/2642
* Add protobuf-net code-first to README.md by @​weitzhandler in
https://github.com/grpc/grpc-dotnet/pull/2644
* Add more options to perf client by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2648
* Update docs and starvs for slnx by @​MihaZupan in
https://github.com/grpc/grpc-dotnet/pull/2649
* Support reading compressed grpc-web trailing headers by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2650
* Add .NET 10 target by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2653
* Update project.json packages and examples by @​JamesNK in
https://github.com/grpc/grpc-dotnet/pull/2658
* Bump tar-fs from 3.1.0 to 3.1.1 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot[bot] in
https://github.com/grpc/grpc-dotnet/pull/2668
* Update Grpc.Tools dependency to latest version by @​apolcyn in
https://github.com/grpc/grpc-dotnet/pull/2675
* Update version on v2.76.x to 2.76.0-pre1 by @​apolcyn in
https://github.com/grpc/grpc-dotnet/pull/2676

## New Contributors
* @​KnapSac made their first contribution in
https://github.com/grpc/grpc-dotnet/pull/2631
* @​weitzhandler made their first contribution in
https://github.com/grpc/grpc-dotnet/pull/2644
* @​MihaZupan made their first contribution in
https://github.com/grpc/grpc-dotnet/pull/2649

**Full Changelog**:
https://github.com/grpc/grpc-dotnet/compare/v2.71.0...v2.76.0-pre1

Commits viewable in [compare
view](https://github.com/grpc/grpc-dotnet/compare/v2.71.0...v2.76.0).
</details>

Pinned
[Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/dotnet)
at 10.0.5.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.DependencyInjection's
releases](https://github.com/dotnet/dotnet/releases)._

No release notes found for this version range.

Commits viewable in [compare
view](https://github.com/dotnet/dotnet/commits).
</details>

Pinned [Microsoft.Extensions.Http](https://github.com/dotnet/dotnet) at
10.0.5.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.Http's
releases](https://github.com/dotnet/dotnet/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.103` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.6.25358.103/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.6.25358.103/README.md#building-from-released-sources).

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.114` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.5.25277.114/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.5.25277.114/README.md#building-from-released-sources).

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.110` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.4.25258.110/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.4.25258.110/README.md#building-from-released-sources).

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.5` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.3.25171.5/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.3.25171.5/README.md#building-from-released-sources).

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.2` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.2.25163.2/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.2.25163.2/README.md#building-from-released-sources).

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.5` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.1.25080.5/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.1.25080.5/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.115` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.115/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.115/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.114` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.114/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.114/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.113` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.113/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.113/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.112` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.112/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.112/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.111` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.111/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.111/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.110` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.110/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.110/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.109` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.109/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.109/README.md#building-from-released-sources).

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.101` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.101/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.101/README.md#building-from-released-sources).

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](https://github.com/dotnet/dotnet/commits).
</details>

Updated [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest)
from 18.0.1 to 18.3.0.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.NET.Test.Sdk's
releases](https://github.com/microsoft/vstest/releases)._

## 18.3.0

## What's Changed

* Fix answer file splitting by @​nohwnd in
https://github.com/microsoft/vstest/pull/15306

## Internal fixes and updates

* Bump branding to 18.1 by @​nohwnd in
https://github.com/microsoft/vstest/pull/15286
* Remove stale copy of S.ComponentModel.Composition from testplatform
packages by @​ViktorHofer in
https://github.com/microsoft/vstest/pull/15287
* Update codeflow metadata to fix backflow by @​premun in
https://github.com/microsoft/vstest/pull/15291
* [main] Update dependencies from devdiv/DevDiv/vs-code-coverage by
@​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15283
* Update Microsoft.Build.Utilities.Core by @​Youssef1313 in
https://github.com/microsoft/vstest/pull/15300
* Disable DynamicNative instrumentation by default by @​nohwnd in
https://github.com/microsoft/vstest/pull/15299
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in https://github.com/microsoft/vstest/pull/15293
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in https://github.com/microsoft/vstest/pull/15302
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in https://github.com/microsoft/vstest/pull/15314
* Delete sha1 custom implementation we are not using for a long time by
@​nohwnd in https://github.com/microsoft/vstest/pull/15313
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in https://github.com/microsoft/vstest/pull/15315
* Update branding to 18.3.0 by @​nohwnd in
https://github.com/microsoft/vstest/pull/15321
* [main] Update dependencies from devdiv/DevDiv/vs-code-coverage by
@​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15325
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in https://github.com/microsoft/vstest/pull/15264
* Revert adding dotnet_host_path workaround by @​nohwnd in
https://github.com/microsoft/vstest/pull/15328
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in https://github.com/microsoft/vstest/pull/15338
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in https://github.com/microsoft/vstest/pull/15322
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in https://github.com/microsoft/vstest/pull/15343
* Change PreReleaseVersionLabel from 'preview' to 'release' by @​nohwnd
in https://github.com/microsoft/vstest/pull/15352
* [rel/18.3] Update dependencies from devdiv/DevDiv/vs-code-coverage by
@​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15354
* [rel/18.3] Update dependencies from dotnet/arcade by
@​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15389
* [rel/18.3] Update dependencies from dotnet/arcade by
@​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15400
* Update build tools to 17.11.48 to be source buildable by @​nohwnd in
https://github.com/microsoft/vstest/pull/15310
* Disable publishing on RTM by @​nohwnd in
https://github.com/microsoft/vstest/pull/15296
* Don't access nuget.org for package feeds by @​nohwnd in
https://github.com/microsoft/vstest/pull/15316
* No nuget access fix tests by @​nohwnd in
https://github.com/microsoft/vstest/pull/15317
* Disable Dependabot updates in dependabot.yml by @​mmitche in
https://github.com/microsoft/vstest/pull/15324

## New Contributors
* @​premun made their first contribution in
https://github.com/microsoft/vstest/pull/15291

Commits viewable in [compare
view](https://github.com/microsoft/vstest/compare/v18.0.1...v18.3.0).
</details>

Pinned
[ResolverAthena.Grpc.Client](https://github.com/crispthinking/athena-dotnet-models)
at 1.0.0.

<details>
<summary>Release notes</summary>

_Sourced from [ResolverAthena.Grpc.Client's
releases](https://github.com/crispthinking/athena-dotnet-models/releases)._

## 1.0.0

## What's Changed
* Bump actions/download-artifact from 6 to 7 by @​dependabot[bot] in
https://github.com/crispthinking/athena-dotnet-models/pull/7
* Bump actions/upload-artifact from 5 to 6 by @​dependabot[bot] in
https://github.com/crispthinking/athena-dotnet-models/pull/6
* Bump actions/checkout from 5 to 6 by @​dependabot[bot] in
https://github.com/crispthinking/athena-dotnet-models/pull/5
* feat: Bump athena-protobufs submodule to deprecate BRG format by
@​iwillspeak in
https://github.com/crispthinking/athena-dotnet-models/pull/8

## New Contributors
* @​dependabot[bot] made their first contribution in
https://github.com/crispthinking/athena-dotnet-models/pull/7
* @​iwillspeak made their first contribution in
https://github.com/crispthinking/athena-dotnet-models/pull/8

**Full Changelog**:
https://github.com/crispthinking/athena-dotnet-models/compare/v0.7.0...v1.0.0

Commits viewable in [compare
view](https://github.com/crispthinking/athena-dotnet-models/compare/v0.7.0...v1.0.0).
</details>

Updated [System.CommandLine](https://github.com/dotnet/dotnet) from
2.0.0-rc.1.25451.107 to 2.0.5.

<details>
<summary>Release notes</summary>

_Sourced from [System.CommandLine's
releases](https://github.com/dotnet/dotnet/releases)._

No release notes found for this version range.

Commits viewable in [compare
view](https://github.com/dotnet/dotnet/commits).
</details>

Pinned
[System.Threading.Tasks.Dataflow](https://github.com/dotnet/dotnet) at
10.0.5.

<details>
<summary>Release notes</summary>

_Sourced from [System.Threading.Tasks.Dataflow's
releases](https://github.com/dotnet/dotnet/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.103` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.6.25358.103/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.6.25358.103/README.md#building-from-released-sources).

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.114` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.5.25277.114/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.5.25277.114/README.md#building-from-released-sources).

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.110` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.4.25258.110/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.4.25258.110/README.md#building-from-released-sources).

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.5` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.3.25171.5/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.3.25171.5/README.md#building-from-released-sources).

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.2` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.2.25163.2/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.2.25163.2/README.md#building-from-released-sources).

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.5` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.1.25080.5/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v10.0.0-preview.1.25080.5/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.115` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.115/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.115/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.114` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.114/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.114/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.113` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.113/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.113/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.112` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.112/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.112/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.111` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.111/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.111/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.110` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.110/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.110/README.md#building-from-released-sources).

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

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.109` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.109/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.109/README.md#building-from-released-sources).

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.101` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.101/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.101/README.md#building-from-released-sources).

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.7

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.7` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.7/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.7/README.md#building-from-released-sources).

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.6

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.6` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.6/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.6/README.md#building-from-released-sources).

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.5

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.5` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.5/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.5/README.md#building-from-released-sources).

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.4

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.4` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.4/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.4/README.md#building-from-released-sources).

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.3

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.3` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.3/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.3/README.md#building-from-released-sources).

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.2

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.2` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.2/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.2/README.md#building-from-released-sources).

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.1

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.1` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.1/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.1/README.md#building-from-released-sources).

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.0

You can build .NET 9.0 from the repository by cloning the release tag
`v9.0.0` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.0/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.0/README.md#building-from-released-sources).

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.0-rc.2.24473.5

You can build NET 9.0 RC2 from the repository by cloning the release tag
`v9.0.0-rc.2.24473.5` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.0-rc.2.24473.5/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.0-rc.2.24473.5/README.md#building-from-released-sources).

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.0-rc.1.24431.7

You can build .NET 9.0 RC1 from the repository by cloning the release
tag `v9.0.0-rc.1.24431.7` and following the build instructions in the
[main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.0-rc.1.24431.7/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.0-rc.1.24431.7/README.md#building-from-released-sources).

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.0-preview.7.24405.7

You can build .NET 9.0 Preview 7 from the repository by cloning the
release tag `v9.0.0-preview.7.24405.7` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.7.24405.7/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.7.24405.7/README.md#building-from-released-sources).

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.0-preview.6.24327.7

You can build .NET 9.0 Preview 6 from the repository by cloning the
release tag `v9.0.0-preview.6.24327.7` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.6.24327.7/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.6.24327.7/README.md#building-from-released-sources).

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.0-preview.5.24306.7

You can build .NET 9.0 Preview 5 from the repository by cloning the
release tag `v9.0.0-preview.5.24306.7` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.5.24306.7/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.5.24306.7/README.md#building-from-released-sources).

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.0-preview.4.24266.19

You can build .NET 9.0 Preview 4 from the repository by cloning the
release tag `v9.0.0-preview.4.24266.19` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.4.24266.19/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.4.24266.19/README.md#building-from-released-sources).

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.0-preview.3.24172.9

You can build .NET 9.0 Preview 3 from the repository by cloning the
release tag `v9.0.0-preview.3.24172.9` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.3.24172.9/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.3.24172.9/README.md#building-from-released-sources).

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.0-preview.2.24128.5

You can build .NET 9.0 Preview 2 from the repository by cloning the
release tag `v9.0.0-preview.2.24128.5` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.2.24128.5/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.2.24128.5/README.md#building-from-released-sources).

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.0-preview.1.24080.9

You can build .NET 9.0 Preview 1 from the repository by cloning the
release tag `v9.0.0-preview.1.24080.9` and following the build
instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.1.24080.9/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v9.0.0-preview.1.24080.9/README.md#building-from-released-sources).

Attached are PGP signatures for the GitHub generated tarball and
zipball. You can find the public key at https://dot.net/release-key-2023

## 8.0.125

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 8.0 from the repository by cloning the release tag
`v8.0.125` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v8.0.125/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v8.0.125/README.md#building-from-released-sources).

Attached are PGP signatures for the GitHub generated tarball and
zipball. You can find the public key at https://dot.net/release-key-2023

## 8.0.124

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 8.0 from the repository by cloning the release tag
`v8.0.124` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v8.0.124/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v8.0.124/README.md#building-from-released-sources).

Attached are PGP signatures for the GitHub generated tarball and
zipball. You can find the public key at https://dot.net/release-key-2023

## 8.0.123

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 8.0 from the repository by cloning the release tag
`v8.0.123` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v8.0.123/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v8.0.123/README.md#building-from-released-sources).

Attached are PGP signatures for the GitHub generated tarball and
zipball. You can find the public key at https://dot.net/release-key-2023

## 8.0.122

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 8.0 from the repository by cloning the release tag
`v8.0.122` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v8.0.122/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v8.0.122/README.md#building-from-released-sources).

Attached are PGP signatures for the GitHub generated tarball and
zipball. You can find the public key at https://dot.net/release-key-2023

## 8.0.121

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 8.0 from the repository by cloning the release tag
`v8.0.121` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v8.0.121/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v8.0.121/README.md#building-from-released-sources).

Attached are PGP signatures for the GitHub generated tarball and
zipball. You can find the public key at https://dot.net/release-key-2023

## 8.0.120

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 8.0 from the repository by cloning the release tag
`v8.0.120` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v8.0.120/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v8.0.120/README.md#building-from-released-sources).

Attached are PGP signatures for the GitHub generated tarball and
zipball. You can find the public key at https://dot.net/release-key-2023

## 8.0.119

<!-- This file is a template for a GitHub release notes post. -->
<!-- The line prefixed by 'Title:' will be submitted as the title of the
release notes, and the rest of the file will be submitted as the body.
-->

You can build .NET 8.0 from the repository by cloning the release tag
`v8.0.119` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v8.0.119/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v8.0.119/README.md#building-from-released-sources).

Attached are PGP signatures for the GitHub generated tarball and
zipball. You can find the public key at https://dot.net/release-key-2023

## 8.0.100-preview.1



## 8.0.18

You can build .NET 8.0 from the repository by cloning the release tag
`v8.0.18` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v8.0.18/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v8.0.18/README.md#building-from-released-sources).

Attached are PGP signatures for the GitHub generated tarball and
zipball. You can find the public key at https://dot.net/release-key-2023

## 8.0.17

You can build .NET 8.0 from the repository by cloning the release tag
`v8.0.17` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v8.0.17/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v8.0.17/README.md#building-from-released-sources).

Attached are PGP signatures for the GitHub generated tarball and
zipball. You can find the public key at https://dot.net/release-key-2023

## 8.0.16

You can build .NET 8.0 from the repository by cloning the release tag
`v8.0.16` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v8.0.16/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v8.0.16/README.md#building-from-released-sources).

Attached are PGP signatures for the GitHub generated tarball and
zipball. You can find the public key at https://dot.net/release-key-2023

## 8.0.15

You can build .NET 8.0 from the repository by cloning the release tag
`v8.0.15` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v8.0.15/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v8.0.15/README.md#building-from-released-sources).

Attached are PGP signatures for the GitHub generated tarball and
zipball. You can find the public key at https://dot.net/release-key-2023

## 8.0.14

You can build .NET 8.0 from the repository by cloning the release tag
`v8.0.14` and following the build instructions in the [main
README.md](https://github.com/dotnet/dotnet/blob/v8.0.14/README.md#building).

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](https://github.com/dotnet/dotnet/blob/v8.0.14/README.md#building-from-…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants