Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 24, 2025

Updated Aspire.Hosting from 13.0.2 to 13.1.0.

Release notes

Sourced from Aspire.Hosting's releases.

13.1.0

We are excited to share that our 13.1.0 release of Aspire has shipped! All of the packages are available in NuGet.org now. Head over to https://aspire.dev/whats-new/aspire-13-1/ to find what's new in 13.1.0!

What's Changed

Commits viewable in compare view.

Updated Aspire.Hosting.AppHost from 13.0.2 to 13.1.0.

Release notes

Sourced from Aspire.Hosting.AppHost's releases.

13.1.0

We are excited to share that our 13.1.0 release of Aspire has shipped! All of the packages are available in NuGet.org now. Head over to https://aspire.dev/whats-new/aspire-13-1/ to find what's new in 13.1.0!

What's Changed

Commits viewable in compare view.

Updated Markdig from 0.41.3 to 0.44.0.

Release notes

Sourced from Markdig's releases.

0.44.0

Changes

🧰 Misc

  • feat(link-helper): improve ASCII normalization handling (PR #​911) by @​mos379
  • Test netstandard (PR #​915) by @​MihaZupan
  • Use central package management (fb698598)

Full Changelog: 0.43.0...0.44.0

Published with dotnet-releaser

0.43.0

Changes

✨ New Features

  • Add a basic fuzzing project (PR #​903) by @​MihaZupan

🐛 Bug Fixes

  • Fix for table depth error when cell contains backticks (PR #​891) by @​phillip-haydon
  • Fix issue where an inline code block that spans multiple lines doesn't parse correctly (PR #​893) by @​phillip-haydon
  • Remove leading newline in block attributes (PR #​896) by @​Asttear
  • Fix IndexOutOfRangeException in CodeInlineParser (PR #​900) by @​MihaZupan
  • Fix build warnings (PR #​899) by @​MihaZupan
  • Fix edge cases in EmphasisInlineParser (PR #​902) by @​MihaZupan
  • Fix pipe table parsing with a leading paragraph (PR #​905) by @​MihaZupan

🚀 Enhancements

  • add options for link inline (PR #​894) by @​danielklecha
  • Move sln to slnx (PR #​901) by @​MihaZupan
  • Lazily allocate storage for ProcessInlinesBegin/End delegates on Blocks (PR #​906) by @​MihaZupan
  • Add another test for pipe tables (PR #​907) by @​MihaZupan

Full Changelog: 0.42.0...0.43.0

Published with dotnet-releaser

0.42.0

Changes

🐛 Bug Fixes

  • Fixes issue #​845 (PR #​888) by @​prozolic

🚀 Enhancements

  • Add support for a table without an extra new line before it (PR #​885) by @​dannyp32
  • Add source position tracking for grid tables (PR #​883) by @​messani

Full Changelog: 0.41.3...0.42.0

Published with dotnet-releaser

Commits viewable in compare view.

Updated Microsoft.Extensions.Compliance.Redaction from 10.0.0 to 10.1.0.

Release notes

Sourced from Microsoft.Extensions.Compliance.Redaction's releases.

10.1.0

What's Changed

Commits viewable in compare view.

Updated Microsoft.Testing.Platform.MSBuild from 1.7.3 to 2.0.2.

Release notes

Sourced from Microsoft.Testing.Platform.MSBuild's releases.

2.0.0

  1. Implemented 'AddResultFile' for NetCore TestContext (#​609)
  2. Datarow tests - support methods with optional parameters (#​604)
  3. Implemented Initialize Inheritance for ClassInitialize attribute (#​577)
  4. Apply TestCategory from derived class on inherited test methods (#​513)
  5. Fixed IsNotInstanceOfType failing when objected being asserted on is null (#​622)
  6. Setting MapNotRunnableToFailed to true by default (#​610)

2.0.0-beta4

  1. Deployment Item support in .NET Core Deployment Item support in .NET Core microsoft/testfx#565 [enhancement]
  2. Support for CancellationTokenSource in TestContext to help in timeout scenario Support for CancellationTokenSource in TestContext to help in timeout… microsoft/testfx#585 [enhancement]
  3. Correcting error message when DynamicData doesn't have any data Cryptic error message when DynamicData doesn't have any data microsoft/testfx#443

2.0.0-beta2

  1. (BREAKING CHANGE) TestContext Properties type fixed to be IDictionary for .NET Core TestContext Properties type fixed to be IDictionary microsoft/testfx#563 [enhancement]
  2. Base class data rows should not be executed Base class data rows should not be executed microsoft/testfx#546
  3. Setting option for marking not runnable tests as failed Setting Option for marking not runnable tests as failed microsoft/testfx#524

Commits viewable in compare view.

Updated MSTest.Analyzers from 3.9.3 to 4.0.2.

Release notes

Sourced from MSTest.Analyzers's releases.

4.0.2

See the release notes here

4.0.1

See the release notes here

4.0.0

What is new?

Assert.That

MSTest v4 adds a new type of assertion, that allows you to write any expression, and it will inspect the result to give you more information on failure. Providing a very flexible way to assert complicated expressions. Here a simple example:

[TestClass]
public sealed class Test1
{
    [TestMethod]
    public void TestMethod1()
    {
        var animal = "Tiger";
        var zoo = new Zoo();
        Assert.That(() => zoo.GetAnimal() == animal);
    }
}

public class Zoo
{
    public string GetAnimal()
    {
        return "Giraffe";
    }
}
Assert.That(() => zoo.GetAnimal() == animal) failed.
Details:
    animal = "Tiger"     
    zoo.GetAnimal() = "Giraffe"

CallerArgumentExpression

CallerArgumentExpression is consumed by all assertions, to make them aware of the expressions used in the assertion. In the example below, we now know what both the expected and actual values are. But also what value they come from, giving us opportunity to provide better error messages:

[TestClass]
public sealed class Test1
{
    [TestMethod]
    public void TestMethod1()
    {
        string animal = null;
        Assert.AreEqual("Giraffe", animal);
    }
}
 ... (truncated)

## 4.0.0-preview.25372.6

This is a prerelease of MSTest v4. Docs on migration from v3 to v4 are in progress. We are working towards addressing the items tracked in #​1285 and #​5762

## 4.0.0-preview.25358.7

This is a prerelease of MSTest v4. Docs on migration from v3 to v4 are in progress. We are working towards addressing the items tracked in https://github.com/microsoft/testfx/issues/1285 and https://github.com/microsoft/testfx/issues/5762

## 3.11.1

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.1)

## 3.11.0

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.0)

## 3.10.5

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.5)


## 3.10.4

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.4)


## 3.10.3

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.3)


## 3.10.2

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.2)


## 3.10.1

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.1)


## 3.10.0

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.0)


Commits viewable in [compare view](https://github.com/microsoft/testfx/compare/v3.9.3...v4.0.2).
</details>

Updated [MSTest.Engine](https://github.com/microsoft/testfx) from 1.0.0-alpha.25317.1 to 1.0.0-alpha.25561.5.

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

_Sourced from [MSTest.Engine's releases](https://github.com/microsoft/testfx/releases)._

No release notes found for this version range.

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

Updated [MSTest.SourceGeneration](https://github.com/microsoft/testfx) from 1.0.0-alpha.25317.1 to 1.0.0-alpha.25561.5.

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

_Sourced from [MSTest.SourceGeneration's releases](https://github.com/microsoft/testfx/releases)._

No release notes found for this version range.

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

Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.9.3 to 4.0.2.

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

_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._

## 4.0.2

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.2)

## 4.0.1

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.1)

## 4.0.0

## What is new?

### Assert.That 

MSTest v4 adds a new type of assertion, that allows you to write any expression, and it will inspect the result to give you more information on failure. Providing a very flexible way to assert complicated expressions. Here a simple example:

```csharp
[TestClass]
public sealed class Test1
{
    [TestMethod]
    public void TestMethod1()
    {
        var animal = "Tiger";
        var zoo = new Zoo();
        Assert.That(() => zoo.GetAnimal() == animal);
    }
}

public class Zoo
{
    public string GetAnimal()
    {
        return "Giraffe";
    }
}
Assert.That(() => zoo.GetAnimal() == animal) failed.
Details:
    animal = "Tiger"     
    zoo.GetAnimal() = "Giraffe"

CallerArgumentExpression

CallerArgumentExpression is consumed by all assertions, to make them aware of the expressions used in the assertion. In the example below, we now know what both the expected and actual values are. But also what value they come from, giving us opportunity to provide better error messages:

[TestClass]
public sealed class Test1
{
    [TestMethod]
    public void TestMethod1()
    {
        string animal = null;
        Assert.AreEqual("Giraffe", animal);
    }
}
 ... (truncated)

## 4.0.0-preview.25372.6

This is a prerelease of MSTest v4. Docs on migration from v3 to v4 are in progress. We are working towards addressing the items tracked in #​1285 and #​5762

## 4.0.0-preview.25358.7

This is a prerelease of MSTest v4. Docs on migration from v3 to v4 are in progress. We are working towards addressing the items tracked in https://github.com/microsoft/testfx/issues/1285 and https://github.com/microsoft/testfx/issues/5762

## 3.11.1

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.1)

## 3.11.0

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.0)

## 3.10.5

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.5)


## 3.10.4

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.4)


## 3.10.3

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.3)


## 3.10.2

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.2)


## 3.10.1

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.1)


## 3.10.0

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.0)


Commits viewable in [compare view](https://github.com/microsoft/testfx/compare/v3.9.3...v4.0.2).
</details>

Updated [Swashbuckle.AspNetCore](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) from 10.0.1 to 10.1.0.

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

_Sourced from [Swashbuckle.AspNetCore's releases](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases)._

## 10.1.0

## What's Changed

### New Features

* Add public method `SchemaRepository.ReplaceSchemaId` by @​bkoelman in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3708

### Bug Fixes

* Exclude inherited properties only when base added to `AllOf` by @​John-Paul-R in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3692

### Miscellaneous

* Add clarifying example in migration guide to v10 by @​markuspalme in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3672
* Add markdown linter by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3673
* Update dependencies by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3685
* Validate OpenAPI documents create valid C# clients by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3686
* End-to-end client validation tests by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3687
* Add NSwag client test by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3689
* Fix GitHub step summaries by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3691
* Clarify compatibility by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3694
* Update zizmor by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3695
* Suppress zizmor false-positive by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3696
* Refactor tests by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3705
* Use NuGet Trusted Publishing by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3574
* Annotate `TryLookupByType` with nullability hints by @​martincostello in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3719
* Bump swagger-ui-dist to 5.31.0 by @​dependabot in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3720

## New Contributors

* @​markuspalme made their first contribution in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3672
* @​John-Paul-R made their first contribution in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3692

**Full Changelog**: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.0.1...v10.1.0


Commits viewable in [compare view](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.0.1...v10.1.0).
</details>

Updated [System.Linq.Async](https://github.com/dotnet/reactive) from 6.0.3 to 7.0.0.

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

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

## 7.0.0



## Changes:


### Bugs:


* #​1626: Fix duplicate emission in Delay with immediate selector

### Enhancement:


* #​2182: Implementing TakeUntil with CancellationToken
* #​2178: Enhancement Add DisposeWith
* #​2039: Run tests on .NET 8.0
* #​1879: Add Rx.NET 2023 roadmap, and tooling update ADR
* #​1700: Add MinByWithTies and MaxByWithTies to bring back a MinBy/MaxBy that returns a list

### Others:


* #​2293: Generate AsyncEnumerableDeprecated facade in runtime assembly
<details><summary><b>See More</b></summary>

* #​2292: Remove AsyncEnumerable from System.Linq.Async public API
* #​2289: Move projection SumAsync to System.Interactive.Async
* #​2286: Obsolete messages explain CancellationToken change
* #​2280: Handle clashes in `System.Interactive.Async` with `System.Linq.Asyncenumerable`
* #​2278: Add Ix.NET AverageAsync overloads supporting async selectors
* #​2275: Update System.Linq.AsyncEnumerable refs to .NET 10 GA
* #​2274: Ix.NET v7 release prep
* #​2268: Rx 7.0 packaging changes
* #​2267: Update Rx.NET to .NET 10 SDK
* #​2266: Further .NET 9.0 SDK updates
* #​2263: Fix typos in docs (v2)
* #​2260: Modify OfType to accept nullable input element type
* #​2251: Fix condition in documentation example
* #​2240: Preparing for System.Linq.AsyncEnumerable
* #​2249: Update Ix.NET dependencies
* #​2244: Update dependencies in Rx.NET
* #​2242: Update IntroToRx for Rx 6.1
* #​2237: Add ResetExceptionDispatchState operator and document exception reuse limitations
* #​2229: Bump xunit from 2.4.1 to 2.9.3
* #​2231: Bump Microsoft.NET.Test.Sdk from 17.0.0 to 17.13.0
* #​2222: TakeUntil with CancellationToken
* #​2220: Add namespace style config to .editorconfig
* #​2219: Feature/test packages 2025
* #​2218: Update Rx PackageReferences to 6.1.0 in integration test
* #​2217: Update version.json to 6.1.0
 ... (truncated)

## 7.0.0-preview.15



## Changes:


### Bugs:


* #​1626: Fix duplicate emission in Delay with immediate selector

### Enhancement:


* #​2182: Implementing TakeUntil with CancellationToken
* #​2178: Enhancement Add DisposeWith
* #​2039: Run tests on .NET 8.0
* #​1879: Add Rx.NET 2023 roadmap, and tooling update ADR
* #​1700: Add MinByWithTies and MaxByWithTies to bring back a MinBy/MaxBy that returns a list

### Others:


* #​2293: Generate AsyncEnumerableDeprecated facade in runtime assembly
<details><summary><b>See More</b></summary>

* #​2292: Remove AsyncEnumerable from System.Linq.Async public API
* #​2289: Move projection SumAsync to System.Interactive.Async
* #​2286: Obsolete messages explain CancellationToken change
* #​2280: Handle clashes in `System.Interactive.Async` with `System.Linq.Asyncenumerable`
* #​2278: Add Ix.NET AverageAsync overloads supporting async selectors
* #​2275: Update System.Linq.AsyncEnumerable refs to .NET 10 GA
* #​2274: Ix.NET v7 release prep
* #​2268: Rx 7.0 packaging changes
* #​2267: Update Rx.NET to .NET 10 SDK
* #​2266: Further .NET 9.0 SDK updates
* #​2263: Fix typos in docs (v2)
* #​2260: Modify OfType to accept nullable input element type
* #​2251: Fix condition in documentation example
* #​2240: Preparing for System.Linq.AsyncEnumerable
* #​2249: Update Ix.NET dependencies
* #​2244: Update dependencies in Rx.NET
* #​2242: Update IntroToRx for Rx 6.1
* #​2237: Add ResetExceptionDispatchState operator and document exception reuse limitations
* #​2229: Bump xunit from 2.4.1 to 2.9.3
* #​2231: Bump Microsoft.NET.Test.Sdk from 17.0.0 to 17.13.0
* #​2222: TakeUntil with CancellationToken
* #​2220: Add namespace style config to .editorconfig
* #​2219: Feature/test packages 2025
* #​2218: Update Rx PackageReferences to 6.1.0 in integration test
* #​2217: Update version.json to 6.1.0
 ... (truncated)

## 7.0.0-preview.14



## Changes:


### Bugs:


* #​1626: Fix duplicate emission in Delay with immediate selector

### Enhancement:


* #​2182: Implementing TakeUntil with CancellationToken
* #​2178: Enhancement Add DisposeWith
* #​2039: Run tests on .NET 8.0
* #​1879: Add Rx.NET 2023 roadmap, and tooling update ADR
* #​1700: Add MinByWithTies and MaxByWithTies to bring back a MinBy/MaxBy that returns a list

### Others:


* #​2292: Remove AsyncEnumerable from System.Linq.Async public API
<details><summary><b>See More</b></summary>

* #​2289: Move projection SumAsync to System.Interactive.Async
* #​2286: Obsolete messages explain CancellationToken change
* #​2280: Handle clashes in `System.Interactive.Async` with `System.Linq.Asyncenumerable`
* #​2278: Add Ix.NET AverageAsync overloads supporting async selectors
* #​2275: Update System.Linq.AsyncEnumerable refs to .NET 10 GA
* #​2274: Ix.NET v7 release prep
* #​2268: Rx 7.0 packaging changes
* #​2267: Update Rx.NET to .NET 10 SDK
* #​2266: Further .NET 9.0 SDK updates
* #​2263: Fix typos in docs (v2)
* #​2260: Modify OfType to accept nullable input element type
* #​2251: Fix condition in documentation example
* #​2240: Preparing for System.Linq.AsyncEnumerable
* #​2249: Update Ix.NET dependencies
* #​2244: Update dependencies in Rx.NET
* #​2242: Update IntroToRx for Rx 6.1
* #​2237: Add ResetExceptionDispatchState operator and document exception reuse limitations
* #​2229: Bump xunit from 2.4.1 to 2.9.3
* #​2231: Bump Microsoft.NET.Test.Sdk from 17.0.0 to 17.13.0
* #​2222: TakeUntil with CancellationToken
* #​2220: Add namespace style config to .editorconfig
* #​2219: Feature/test packages 2025
* #​2218: Update Rx PackageReferences to 6.1.0 in integration test
* #​2217: Update version.json to 6.1.0
* #​2216: Fix RefCount bugs
 ... (truncated)

## 7.0.0-preview.13



## Changes:


### Bugs:


* #​1626: Fix duplicate emission in Delay with immediate selector

### Enhancement:


* #​2182: Implementing TakeUntil with CancellationToken
* #​2178: Enhancement Add DisposeWith
* #​2039: Run tests on .NET 8.0
* #​1879: Add Rx.NET 2023 roadmap, and tooling update ADR
* #​1700: Add MinByWithTies and MaxByWithTies to bring back a MinBy/MaxBy that returns a list

### Others:


* #​2289: Move projection SumAsync to System.Interactive.Async
<details><summary><b>See More</b></summary>

* #​2286: Obsolete messages explain CancellationToken change
* #​2280: Handle clashes in `System.Interactive.Async` with `System.Linq.Asyncenumerable`
* #​2278: Add Ix.NET AverageAsync overloads supporting async selectors
* #​2275: Update System.Linq.AsyncEnumerable refs to .NET 10 GA
* #​2274: Ix.NET v7 release prep
* #​2268: Rx 7.0 packaging changes
* #​2267: Update Rx.NET to .NET 10 SDK
* #​2266: Further .NET 9.0 SDK updates
* #​2263: Fix typos in docs (v2)
* #​2260: Modify OfType to accept nullable input element type
* #​2251: Fix condition in documentation example
* #​2240: Preparing for System.Linq.AsyncEnumerable
* #​2249: Update Ix.NET dependencies
* #​2244: Update dependencies in Rx.NET
* #​2242: Update IntroToRx for Rx 6.1
* #​2237: Add ResetExceptionDispatchState operator and document exception reuse limitations
* #​2229: Bump xunit from 2.4.1 to 2.9.3
* #​2231: Bump Microsoft.NET.Test.Sdk from 17.0.0 to 17.13.0
* #​2222: TakeUntil with CancellationToken
* #​2220: Add namespace style config to .editorconfig
* #​2219: Feature/test packages 2025
* #​2218: Update Rx PackageReferences to 6.1.0 in integration test
* #​2217: Update version.json to 6.1.0
* #​2216: Fix RefCount bugs
* #​2209: Fix Ix.NET build break on Ubuntu 24
 ... (truncated)

## 7.0.0-preview.10



## Changes:


### Bugs:


* #​1626: Fix duplicate emission in Delay with immediate selector

### Enhancement:


* #​2182: Implementing TakeUntil with CancellationToken
* #​2178: Enhancement Add DisposeWith
* #​2039: Run tests on .NET 8.0
* #​1879: Add Rx.NET 2023 roadmap, and tooling update ADR
* #​1700: Add MinByWithTies and MaxByWithTies to bring back a MinBy/MaxBy that returns a list

### Others:


* #​2278: Add Ix.NET AverageAsync overloads supporting async selectors
<details><summary><b>See More</b></summary>

* #​2275: Update System.Linq.AsyncEnumerable refs to .NET 10 GA
* #​2274: Ix.NET v7 release prep
* #​2268: Rx 7.0 packaging changes
* #​2267: Update Rx.NET to .NET 10 SDK
* #​2266: Further .NET 9.0 SDK updates
* #​2263: Fix typos in docs (v2)
* #​2260: Modify OfType to accept nullable input element type
* #​2251: Fix condition in documentation example
* #​2240: Preparing for System.Linq.AsyncEnumerable
* #​2249: Update Ix.NET dependencies
* #​2244: Update dependencies in Rx.NET
* #​2242: Update IntroToRx for Rx 6.1
* #​2237: Add ResetExceptionDispatchState operator and document exception reuse limitations
* #​2229: Bump xunit from 2.4.1 to 2.9.3
* #​2231: Bump Microsoft.NET.Test.Sdk from 17.0.0 to 17.13.0
* #​2222: TakeUntil with CancellationToken
* #​2220: Add namespace style config to .editorconfig
* #​2219: Feature/test packages 2025
* #​2218: Update Rx PackageReferences to 6.1.0 in integration test
* #​2217: Update version.json to 6.1.0
* #​2216: Fix RefCount bugs
* #​2209: Fix Ix.NET build break on Ubuntu 24
* #​2208: Move to .NET SDK 9.0.300
* #​2189: Update 02_KeyTypes.md
* #​2184: Book Erratum Rx.Net v6.0
 ... (truncated)

## 7.0.0-preview.9



## Changes:


### Bugs:


* #​1626: Fix duplicate emission in Delay with immediate selector

### Enhancement:


* #​2182: Implementing TakeUntil with CancellationToken
* #​2178: Enhancement Add DisposeWith
* #​2039: Run tests on .NET 8.0
* #​1879: Add Rx.NET 2023 roadmap, and tooling update ADR
* #​1700: Add MinByWithTies and MaxByWithTies to bring back a MinBy/MaxBy that returns a list

### Others:


* #​2275: Update System.Linq.AsyncEnumerable refs to .NET 10 GA
<details><summary><b>See More</b></summary>

* #​2274: Ix.NET v7 release prep
* #​2268: Rx 7.0 packaging changes
* #​2267: Update Rx.NET to .NET 10 SDK
* #​2266: Further .NET 9.0 SDK updates
* #​2263: Fix typos in docs (v2)
* #​2260: Modify OfType to accept nullable input element type
* #​2251: Fix condition in documentation example
* #​2240: Preparing for System.Linq.AsyncEnumerable
* #​2249: Update Ix.NET dependencies
* #​2244: Update dependencies in Rx.NET
* #​2242: Update IntroToRx for Rx 6.1
* #​2237: Add ResetExceptionDispatchState operator and document exception reuse limitations
* #​2229: Bump xunit from 2.4.1 to 2.9.3
* #​2231: Bump Microsoft.NET.Test.Sdk from 17.0.0 to 17.13.0
* #​2222: TakeUntil with CancellationToken
* #​2220: Add namespace style config to .editorconfig
* #​2219: Feature/test packages 2025
* #​2218: Update Rx PackageReferences to 6.1.0 in integration test
* #​2217: Update version.json to 6.1.0
* #​2216: Fix RefCount bugs
* #​2209: Fix Ix.NET build break on Ubuntu 24
* #​2208: Move to .NET SDK 9.0.300
* #​2189: Update 02_KeyTypes.md
* #​2184: Book Erratum Rx.Net v6.0
* #​2185: Suggested fixes for Issue #​2184
 ... (truncated)

## 7.0.0-preview.1



## Changes:


### Bugs:


* #​1626: Fix duplicate emission in Delay with immediate selector

### Enhancement:


* #​2182: Implementing TakeUntil with CancellationToken
* #​2178: Enhancement Add DisposeWith
* #​2039: Run tests on .NET 8.0
* #​1879: Add Rx.NET 2023 roadmap, and tooling update ADR
* #​1700: Add MinByWithTies and MaxByWithTies to bring back a MinBy/MaxBy that returns a list

### Others:


* #​2229: Bump xunit from 2.4.1 to 2.9.3
<details><summary><b>See More</b></summary>

* #​2231: Bump Microsoft.NET.Test.Sdk from 17.0.0 to 17.13.0
* #​2222: TakeUntil with CancellationToken
* #​2220: Add namespace style config to .editorconfig
* #​2219: Feature/test packages 2025
* #​2218: Update Rx PackageReferences to 6.1.0 in integration test
* #​2217: Update version.json to 6.1.0
* #​2216: Fix RefCount bugs
* #​2209: Fix Ix.NET build break on Ubuntu 24
* #​2208: Move to .NET SDK 9.0.300
* #​2189: Update 02_KeyTypes.md
* #​2184: Book Erratum Rx.Net v6.0
* #​2185: Suggested fixes for Issue #​2184
* #​2167: Use new sign tool
* #​2163: Align IntroToRx Start description with reality
* #​2135: Update Ix.NET for .NET 8.0 sdk
* #​2112: Union doesn't dispose enumerator for empty lists
* #​2131: Fix Union Dispose bug #​2112
* #​2113: Add rx 6.0.1 release notes, and document release process
* #​2101: Update test packages
* #​2100: Resolve SDK 8.0.2xx diagnostics
* #​2092: Feature/2005 large composite disposable perf
* #​2097: add select clause so example code compiles
* #​2098: Fix typo in 01_WhyRx.md
* #​2088: Fix code example RxFsEvents 
* #​2076: PageNotFoundError about https://www.reactiveui.net/slack
 ... (truncated)

## 6.1.0



## Changes:


### Bugs:


* #​1626: Fix duplicate emission in Delay with immediate selector

### Enhancement:


* #​2182: Implementing TakeUntil with CancellationToken
* #​2178: Enhancement Add DisposeWith
* #​2039: Run tests on .NET 8.0
* #​1879: Add Rx.NET 2023 roadmap, and tooling update ADR
* #​1700: Add MinByWithTies and MaxByWithTies to bring back a MinBy/MaxBy that returns a list

### Others:


* #​2237: Add ResetExceptionDispatchState operator and document exception reuse limitations
<details><summary><b>See More</b></summary>

* #​2229: Bump xunit from 2.4.1 to 2.9.3
* #​2231: Bump Microsoft.NET.Test.Sdk from 17.0.0 to 17.13.0
* #​2222: TakeUntil with CancellationToken
* #​2220: Add namespace style config to .editorconfig
* #​2219: Feature/test packages 2025
* #​2218: Update Rx PackageReferences to 6.1.0 in integration test
* #​2217: Update version.json to 6.1.0
* #​2216: Fix RefCount bugs
* #​2209: Fix Ix.NET build break on Ubuntu 24
* #​2208: Move to .NET SDK 9.0.300
* #​2189: Update 02_KeyTypes.md
* #​2184: Book Erratum Rx.Net v6.0
* #​2185: Suggested fixes for Issue #​2184
* #​2167: Use new sign tool
* #​2163: Align IntroToRx Start description with reality
* #​2135: Update Ix.NET for .NET 8.0 sdk
* #​2112: Union doesn't dispose enumerator for empty lists
* #​2131: Fix Union Dispose bug #​2112
* #​2113: Add rx 6.0.1 release notes, and document release process
* #​2101: Update test packages
* #​2100: Resolve SDK 8.0.2xx diagnostics
* #​2092: Feature/2005 large composite disposable perf
* #​2097: add select clause so example code compiles
* #​2098: Fix typo in 01_WhyRx.md
* #​2088: Fix code example RxFsEvents 
 ... (truncated)

## 6.1.0-preview.9



## Changes:


### Bugs:


* #​1626: Fix duplicate emission in Delay with immediate selector

### Enhancement:


* #​2182: Implementing TakeUntil with CancellationToken
* #​2178: Enhancement Add DisposeWith
* #​2039: Run tests on .NET 8.0
* #​1879: Add Rx.NET 2023 roadmap, and tooling update ADR
* #​1700: Add MinByWithTies and MaxByWithTies to bring back a MinBy/MaxBy that returns a list

### Others:


* #​2237: Add ResetExceptionDispatchState operator and document exception reuse limitations
<details><summary><b>See More</b></summary>

* #​2229: Bump xunit from 2.4.1 to 2.9.3
* #​2231: Bump Microsoft.NET.Test.Sdk from 17.0.0 to 17.13.0
* #​2222: TakeUntil with CancellationToken
* #​2220: Add namespace style config to .editorconfig
* #​2219: Feature/test packages 2025
* #​2218: Update Rx PackageReferences to 6.1.0 in integration test
* #​2217: Update version.json to 6.1.0
* #​2216: Fix RefCount bugs
* #​2209: Fix Ix.NET build break on Ubuntu 24
* #​2208: Move to .NET SDK 9.0.300
* #​2189: Update 02_KeyTypes.md
* #​2184: Book Erratum Rx.Net v6.0
* #​2185: Suggested fixes for Issue #​2184
* #​2167: Use new sign tool
* #​2163: Align IntroToRx Start description with reality
* #​2135: Update Ix.NET for .NET 8.0 sdk
* #​2112: Union doesn't dispose enumerator for empty lists
* #​2131: Fix Union Dispose bug #​2112
* #​2113: Add rx 6.0.1 release notes, and document release process
* #​2101: Update test packages
* #​2100: Resolve SDK 8.0.2xx diagnostics
* #​2092: Feature/2005 large composite disposable perf
* #​2097: add select clause so example code compiles
* #​2098: Fix typo in 01_WhyRx.md
* #​2088: Fix code example RxFsEvents 
 ... (truncated)

Commits viewable in [compare view](https://github.com/dotnet/reactive/compare/ixnet-v6.0.3...ixnet-v7.0.0).
</details>

Updated [System.Reactive](https://github.com/dotnet/reactive) from 6.0.1 to 6.1.0.

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

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

## 6.1.0



## Changes:


### Bugs:


* #​1626: Fix duplicate emission in Delay with immediate selector

### Enhancement:


* #​2182: Implementing TakeUntil with CancellationToken
* #​2178: Enhancement Add DisposeWith
* #​2039: Run tests on .NET 8.0
* #​1879: Add Rx.NET 2023 roadmap, and tooling update ADR
* #​1700: Add MinByWithTies and MaxByWithTies to bring back a MinBy/MaxBy that returns a list

### Others:


* #​2237: Add ResetExceptionDispatchState operator and document exception reuse limitations
<details><summary><b>See More</b></summary>

* #​2229: Bump xunit from 2.4.1 to 2.9.3
* #​2231: Bump Microsoft.NET.Test.Sdk from 17.0.0 to 17.13.0
* #​2222: TakeUntil with CancellationToken
* #​2220: Add namespace style config to .editorconfig
* #​2219: Feature/test packages 2025
* #​2218: Update Rx PackageReferences to 6.1.0 in integration test
* #​2217: Update version.json to 6.1.0
* #​2216: Fix RefCount bugs
* #​2209: Fix Ix.NET build break on Ubuntu 24
* #​2208: Move to .NET SDK 9.0.300
* #​2189: Update 02_KeyTypes.md
* #​2184: Book Erratum Rx.Net v6.0
* #​2185: Suggested fixes for Issue #​2184
* #​2167: Use new sign tool
* #​2163: Align IntroToRx Start description with reality
* #​2135: Update Ix.NET for .NET 8.0 sdk
* #​2112: Union doesn't dispose enumerator for empty lists
* #​2131: Fix Union Dispose bug #​2112
* #​2113: Add rx 6.0.1 release notes, and document release process
* #​2101: Update test packages
* #​2100: Resolve SDK 8.0.2xx diagnostics
* #​2092: Feature/2005 large composite disposable perf
* #​2097: add select clause so example code compiles
* #​2098: Fix typo in 01_WhyRx.md
* #​2088: Fix code example RxFsEvents 
 ... (truncated)

## 6.1.0-preview.9



## Changes:


### Bugs:


* #​1626: Fix duplicate emission in Delay with immediate selector

### Enhancement:


* #​2182: Implementing TakeUntil with CancellationToken
* #​2178: Enhancement Add DisposeWith
* #​2039: Run tests on .NET 8.0
* #​1879: Add Rx.NET 2023 roadmap, and tooling update ADR
* #​1700: Add MinByWithTies and MaxByWithTies to bring back a MinBy/MaxBy that returns a list

### Others:


* #​2237: Add ResetExceptionDispatchState operator and document exception reuse limitations
<details><summary><b>See More</b></summary>

* #​2229: Bump xunit from 2.4.1 to 2.9.3
* #​2231: Bump Microsoft.NET.Test.Sdk from 17.0.0 to 17.13.0
* #​2222: TakeUntil with CancellationToken
* #​2220: Add namespace style config to .editorconfig
* #​2219: Feature/test packages 2025
* #​2218: Update Rx PackageReferences to 6.1.0 in integration test
* #​2217: Update version.json to 6.1.0
* #​2216: Fix RefCount bugs
* #​2209: Fix Ix.NET build break on Ubuntu 24
* #​2208: Move to .NET SDK 9.0.300
* #​2189: Update 02_KeyTypes.md
* #​2184: Book Erratum Rx.Net v6.0
* #​2185: Suggested fixes for Issue #​2184
* #​2167: Use new sign tool
* #​2163: Align IntroToRx Start description with reality
* #​2135: Update Ix.NET for .NET 8.0 sdk
* #​2112: Union doesn't dispose enumerator for empty lists
* #​2131: Fix Union Dispose bug #​2112
* #​2113: Add rx 6.0.1 release notes, and document release process
* #​2101: Update test packages
* #​2100: Resolve SDK 8.0.2xx diagnostics
* #​2092: Feature/2005 large composite disposable perf
* #​2097: add select clause so example code compiles
* #​2098: Fix typo in 01_WhyRx.md
* #​2088: Fix code example RxFsEvents 
 ... (truncated)

## 6.0.3



## Changes:


### Bugs:


* #​1626: Fix duplicate emission in Delay with immediate selector

### Enhancement:


* #​1700: Add MinByWithTies and MaxByWithTies to bring back a MinBy/MaxBy that returns a list

### Others:


* #​2209: Fix Ix.NET build break on Ubuntu 24
* #​2135: Update Ix.NET for .NET 8.0 sdk
* #​2112: Union doesn't dispose enumerator for empty lists
* #​2131: Fix Union Dispose bug #​2112
* #​1719: Avoid spurious references to Microsoft.Bcl.AsyncInterfaces
<details><summary><b>See More</b></summary>

* #​1701: Include icon in package & fix a couple warnings
* #​1681: Bump Nerdbank.GitVersioning from 3.4.244 to 3.4.255 in /Ix.NET/Source
* #​1680: Bump Nerdbank.GitVersioning from 3.4.244 to 3.4.255 in /Rx.NET/Source
* #​1684: Update Merge.cs
* #​1688: Bump FluentAssertions from 6.2.0 to 6.4.0 in /Ix.NET/Source
* #​1694: Bump coverlet.collector from 3.1.0 to 3.1.1 in /Ix.NET/Source
* #​1696: Bump coverlet.collector from 3.1.0 to 3.1.1 in /Rx.NET/Source
* #​1671: Fix defines to be OR_GREATER
* #​1666: Bump IsExternalInit from 1.0.1 to 1.0.2 in /Ix.NET/Source
* #​1668: Bump Verify.Xunit from 14.7.0 to 14.11.2 in /Rx.NET/Source
* #​1670: Bump MSBuild.Sdk.Extras from 3.0.38 to 3.0.44 in /Ix.NET/Source
* #​1669: Bump MSBuild.Sdk.Extras from 3.0.38 to 3.0.44 in /Rx.NET/Source
* #​1661: Remove support for .NET Core 2.1 and netstandard1.0. bump .net to 4.8
* #​1660: Update to 6.0 SDK and exclude min/max/minby/maxby from 6.0 refs
* #​1637: Bump Microsoft.Bcl.AsyncInterfaces from 5.0.0 to 6.0.0 in /Ix.NET/Source
* #​1640: Bump Microsoft.SourceLink.GitHub from 1.0.0 to 1.1.1 in /Rx.NET/Source
* #​1641: Bump Microsoft.SourceLink.GitHub from 1.0.0 to 1.1.1 in /Ix.NET/Source
* #​1658: Bump Verify.Xunit from 13.3.1 to 14.7.0 in /Rx.NET/Source
* #​1617: fix: OfType now accepts a collection of object?
* #​1502: Update Rx 5.x supported platform in README
* #​1622: Bump Verify.Xunit from 11.24.0 to 13.3.1 in /Rx.NET/Source
* #​1621: Bump FluentAssertions from 6.1.0 to 6.2.0 in /Ix.NET/Source
* #​1615: Bump Microsoft.NETCore.UniversalWindowsPlatform from 6.2.12 to 6.2.13 in /Rx.NET/Source
* #​1603: Bump MSBuild.Sdk.Extras from 3.0.23 to 3.0.38 in /Rx.NET/Source
* #​1602: Bump MSBuild.Sdk.Extras from 3.0.23 to 3.0.38 in /Ix.NET/Source
 ... (truncated)

## 6.0.2



## Changes:


### Bugs:


* #​1626: Fix duplicate emission in Delay with immediate selector

### Enhancement:


* #​1700: Add MinByWithTies and MaxByWithTies to bring back a MinBy/MaxBy that returns a list

### Others:


* #​2209: Fix Ix.NET build break on Ubuntu 24
* #​2135: Update Ix.NET for .NET 8.0 sdk
* #​2112: Union doesn't dispose enumerator for empty lists
* #​2131: Fix Union Dispose bug #​2112
* #​1719: Avoid spurious references to Microsoft.Bcl.AsyncInterfaces
<details><summary><b>See More</b></summary>

* #​1701: Include icon in package & fix a couple warnings
* #​1681: Bump Nerdbank.GitVersioning from 3.4.244 to 3.4.255 in /Ix.NET/Source
* #​1680: Bump Nerdbank.GitVersioning from 3.4.244 to 3.4.255 in /Rx.NET/Source
* #​1684: Update Merge.cs
* #​1688: Bump FluentAssertions from 6.2.0 to 6.4.0 in /Ix.NET/Source
* #​1694: Bump coverlet.collector from 3.1.0 to 3.1.1 in /Ix.NET/Source
* #​1696: Bump coverlet.collector from 3.1.0 to 3.1.1 in /Rx.NET/Source
* #​1671: Fix defines to be OR_GREATER
* #​1666: Bump IsExternalInit from 1.0.1 to 1.0.2 in /Ix.NET/Source
* #​1668: Bump Verify.Xunit from 14.7.0 to 14.11.2 in /Rx.NET/Source
* #​1670: Bump MSBuild.Sdk.Extras from 3.0.38 to 3.0.44 in /Ix.NET/Source
* #​1669: Bump MSBuild.Sdk.Extras from 3.0.38 to 3.0.44 in /Rx.NET/Source
* #​1661: Remove support for .NET Core 2.1 and netstandard1.0. bump .net to 4.8
* #​1660: Update to 6.0 SDK and exclude min/max/minby/maxby from 6.0 refs
* #​1637: Bump Microsoft.Bcl.AsyncInterfaces from 5.0.0 to 6.0.0 in /Ix.NET/Source
* #​1640: Bump Microsoft.SourceLink.GitHub from 1.0.0 to 1.1.1 in /Rx.NET/Source
* #​1641: Bump Microsoft.SourceLink.GitHub from 1.0.0 to 1.1.1 in /Ix.NET/Source
* #​1658: Bump Verify.Xunit from 13.3.1 to 14.7.0 in /Rx.NET/Source
* #​1617: fix: OfType now accepts a collection of object?
* #​1502: Update Rx 5.x supported platform in README
* #​1622: Bump Verify.Xunit from 11.24.0 to 13.3.1 in /Rx.NET/Source
* #​1621: Bump FluentAssertions from 6.1.0 to 6.2.0 in /Ix.NET/Source
* #​1615: Bump Microsoft.NETCore.UniversalWindowsPlatform from 6.2.12 to 6.2.13 in /Rx.NET/Source
* #​1603: Bump MSBuild.Sdk.Extras from 3.0.23 to 3.0.38 in /Rx.NET/Source
* #​1602: Bump MSBuild.Sdk.Extras from 3.0.23 to 3.0.38 in /Ix.NET/Source
 ... (truncated)

Commits viewable in [compare view](https://github.com/dotnet/reactive/compare/ixnet-v6.0.1...rxnet-v6.1.0).
</details>

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions


</details>

Bumps Aspire.Hosting from 13.0.2 to 13.1.0
Bumps Aspire.Hosting.AppHost from 13.0.2 to 13.1.0
Bumps Markdig from 0.41.3 to 0.44.0
Bumps Microsoft.Extensions.Compliance.Redaction from 10.0.0 to 10.1.0
Bumps Microsoft.Testing.Platform.MSBuild from 1.7.3 to 2.0.2
Bumps MSTest.Analyzers from 3.9.3 to 4.0.2
Bumps MSTest.Engine from 1.0.0-alpha.25317.1 to 1.0.0-alpha.25561.5
Bumps MSTest.SourceGeneration from 1.0.0-alpha.25317.1 to 1.0.0-alpha.25561.5
Bumps MSTest.TestFramework from 3.9.3 to 4.0.2
Bumps Swashbuckle.AspNetCore from 10.0.1 to 10.1.0
Bumps System.Linq.Async from 6.0.3 to 7.0.0
Bumps System.Reactive from 6.0.1 to 6.1.0

---
updated-dependencies:
- dependency-name: Aspire.Hosting
  dependency-version: 13.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet
- dependency-name: Aspire.Hosting.AppHost
  dependency-version: 13.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet
- dependency-name: Markdig
  dependency-version: 0.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet
- dependency-name: Microsoft.Extensions.Compliance.Redaction
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet
- dependency-name: Microsoft.Testing.Platform.MSBuild
  dependency-version: 2.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dotnet
- dependency-name: MSTest.Analyzers
  dependency-version: 4.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dotnet
- dependency-name: MSTest.Engine
  dependency-version: 1.0.0-alpha.25561.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet
- dependency-name: MSTest.SourceGeneration
  dependency-version: 1.0.0-alpha.25561.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet
- dependency-name: MSTest.TestFramework
  dependency-version: 4.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dotnet
- dependency-name: Swashbuckle.AspNetCore
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet
- dependency-name: System.Linq.Async
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dotnet
- dependency-name: System.Reactive
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Dec 24, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 31, 2025

Superseded by #94.

@dependabot dependabot bot closed this Dec 31, 2025
@dependabot dependabot bot deleted the dependabot/nuget/dotnet-dda806db25 branch December 31, 2025 21:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .net code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant