Skip to content

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Aug 25, 2025

Updated coverlet.collector from 6.0.2 to 6.0.4.

Release notes

Sourced from coverlet.collector's releases.

6.0.4

Fixed

  • Fix empty coverage report when using include and exclude filters #​1726

Diff between 6.0.3 and 6.0.4

6.0.3

Fixed

Improvements

  • Cache the regex used in InstrumentationHelper #​1693
  • Enable dotnetTool integration tests for linux #​660

Diff between 6.0.2 and 6.0.3

Commits viewable in compare view.

Updated coverlet.msbuild from 6.0.2 to 6.0.4.

Release notes

Sourced from coverlet.msbuild's releases.

6.0.4

Fixed

  • Fix empty coverage report when using include and exclude filters #​1726

Diff between 6.0.3 and 6.0.4

6.0.3

Fixed

Improvements

  • Cache the regex used in InstrumentationHelper #​1693
  • Enable dotnetTool integration tests for linux #​660

Diff between 6.0.2 and 6.0.3

Commits viewable in compare view.

Updated ICSharpCode.Decompiler from 8.2.0.7535 to 9.1.0.7988.

Release notes

Sourced from ICSharpCode.Decompiler's releases.

9.1

ILSpy 9.x is based on .NET 8.0. All artifacts except the self-contained distribution are built framework-dependent, which means .NET 8.0.x or later must be installed prior to starting ILSpy. Note that ILSpy 9.1 also allows a later runtime via #​3391.

New Language Features

  • Update pattern-detection to Roslyn 4.13

Enhancements

  • #​1572: Do not generate variable names that match C# keywords.
  • #​2716: Add an option to allow sorting custom attributes
  • #​3377: Extend error information if multiple assemblies with the same (short) name are selected when creating a solution file.
  • #​3393: Option to turn off smooth scrolling
  • #​3399: Add module filename as ToolTip of AnalyzerEntityTreeNode
  • #​3440: Added support for evaluation-order-preserving reference type check
  • #​3316: Add "variable scopes" to improve naming local variables and anonymous method parameters

Contributions

  • Add support for array initialization based on RuntimeHelpers.CreateSpan<T> (see #​3380 by @​ds5678)
  • Load resource stream outside of delegate (see #​3389 by @​snorrk)
  • Allow ILSpy to launch, when net8.0 is not installed, but a later version (see #​3391 by @​nil4)
  • Fix nested namespace directories (see #​3449 by @​ds5678)
  • Fix #​3402: System.NullReferenceException on right click on .NET 9 (see #​3403 by @​tom-englert)
  • Add an option to turn off smooth scrolling (see #​3405 by @​tom-englert)
  • Use type hint in pointer arithmetic (see #​3413 by @​ds5678)
  • Improve UI for primary constructors on non-record types (see #​3455 by @​ds5678)
  • Fix exception when writing resx files without adding any resources (see #​3418 by @​jwfx)
  • Enhance null handling in switch transformations (see #​3422 by @​ds5678)
  • Don't include generic constraints in generated explicit overrides (see #​3443 by @​ds5678)
  • Improve generation of not equals check (see #​3425 by @​ElektroKill)

Bug fixes

  • Fix #​2269: LocalFunctionDecompiler misplaces nested local functions in ctors
  • Fix #​3322: Add missing checks for equality comparison
  • Fix #​3378: Navigation shortcuts (Alt-Left and Alt-Right) don't work when TreeView has focus
  • Fix #​3381: Make sure that selectedNode is still selected when focus is deferred in IsActive property changed handler.
  • Fix #​3383: more aggressively transform object initializers on structs
  • Fix #​3384: add special case for null-literal conversions in optional argument handling.
  • Fix #​3385: Allow address uses of structs in using transform, if the reference is passed to an in parameter.
  • Fix #​3392: uses of init-setters must use object-initializer syntax.
  • Fix #​3401: Multiple problems when exporting an assembly as project
  • Fix #​3414: Apply latest session settings before saving upon closing the main window
  • Fix #​3342: Wrong null check in MethodVirtualUsedByAnalyzer
  • Fix #​3450: Fix "Clear assembly list" not actually persistent.
  • Fix #​3432: Do not include delegate construction use-sites in DetermineCaptureAndDeclarationScopes.
  • Fix attributes tooltip of GenericParam metadata table

And many other fixes, for a full list click here.

9.0

ILSpy 9.x is based on .NET 8.0. All artifacts except the self-contained distribution are built framework-dependent, which means .NET 8.0.x or later must be installed prior to starting ILSpy.

Generic themes of this release were refactoring the old WPF code base and moving away from platform-dependent implementations to make reuse easier via our ILSpyX package.

A few notable picks from the "What's new" department for you to check out: WebCIL and standalone ECMA-335 metadata support, as well as diagramming (either via ilspycmd or assembly context menu). And in general quality-of-life improvements like the ability to disable automatic assembly loading, performance improvements via DATAS and future-proofing for .NET 10.

New Language Features

  • Add support for C# 12 primary constructors.
  • Add support for C# 12 'ref readonly' parameters
  • Added support for switch on (ReadOnly)Span<char> using a compiler-generated hash function.
  • Added new a.GetValueOrDefault(b) -> a ?? b transform for side-effect-free default values.
  • Support types that provide DisposeAsync without implementing IAsyncDisposable.
  • Updated pattern detection to Roslyn 4.12

Enhancements

  • Added support for reading WebCIL assemblies (IL embedded in WASM) (see #​3184)
  • Added support for reading standalone ECMA-335 metadata (portable PDB and other metadata blobs) (see #​3149)
  • #​3118: Add "Clear assembly list" menu item.
  • #​2893: Add option to disable automatic assembly loading.
  • Allow implicit conversions in switch
  • IL output: Add indentation level to make it easier to see custom attributes belonging to interface implementations.
  • IL output: Print metadata token of custom attribute.
  • Replace native interop CommandLineToArgvW with parsing in Process.Unix.cs from System.Diagnostics.Process #​3201
  • Natural Sort without interop #​3196
  • AOT and x-plat changes #​3203
  • Allow running tests on ARM64 (see #​3231)
  • Alow collecting analyzers annotated with ExportAnalyzerAttribute (see #​3239)
  • Fix #​3237: Use ref readonly locals for readonly.ldelema
  • Fix #​3001: Support new resources format in ResourcesFile/ResXResourceWriter
  • Fix #​3134: Include newobj, initobj and call instructions in TypeInstantiatedByAnalyzer
  • Fix #​3089: Add comment regarding .constraint prefix expressed as cast in C#
  • Fix #​3372: Fix loading a DLL that contains byte sequences matching ZIP central directory
  • Use Microsoft.Sbom.Targets in NuGets #​3346

Contributions

  • Diagramming feature by @​h0lg (see #​3324)
  • Various WPF-related refactorings by @​tom-englert (see #​3257, #​3266, #​3274, #​3283, #​3285, #​3291, #​3292, #​3294, #​3295, #​3297, #​3298, #​3299, #​3302, #​3308, #​3314, #​3325 and #​3335)
  • High DPI fixes by @​CreateAndInject (see #​3348 and #​3350)
  • TreeView: Add referenced types, members and exported types under references (#​3092, @​fowl2)
  • Adjust colors of AvalonEdit built-in highlightings for dark themes (#​3138, @​ltrzesniewski)
  • Add support for Mono C# compiler 2.6.4 pinned region with array variable (#​3110, @​ElektroKill)
  • Add smooth scrolling to settings panels and DecompilerTextView (see #​3244 by @​tom-englert)
  • Ignore empty version directories of dotnet (#​3265 by @​Herrmel)
  • Missing DecompilerSettings by @​naratteu (see #​3356)
  • Fix metadata display of DynamicLocalVariable and DefaultNamespace custom debug information (#​3111, @​ElektroKill)
  • Read and use tuple element names and dynamic type information from PDBs (#​3114, @​ElektroKill)
  • Bugfix: infinite loop in DetermineEffectiveAccessibility (#​3164, @​yzdeveloper)
  • Decompiler Settings: Checkbox in group header does not reflect state of the group (see #​3252 by @​tom-englert)
  • Fix Derived Types Node always being empty (#​3280 by @​Applesauce314)

... (truncated)

9.0-rc

ILSpy 9.x is based on .NET 8.0. All artifacts except the self-contained distribution are built framework-dependent, which means .NET 8.0 or later must be installed prior to starting ILSpy.

New Language Features

  • Updated pattern detection to Roslyn 4.12

Contributions

  • Diagramming feature by @​h0lg (see #​3324)
  • More WPF-related refactorings by @​tom-englert (see #​3325 and #​3335)
  • High DPI fixes by @​CreateAndInject (see #​3348 and #​3350)
  • Missing DecompilerSettings by @​naratteu (see #​3356)

Enhancements

  • Allow implicit conversions in switch

Performance

  • Performance: Initialize ToolPanes in DockWorkspace.InitializeLayout() instead of the property getter to avoid WPF seeing them in InitializeComponent() and rendering all panes docked at the right before the layout is properly initialized.

Bug fixes

  • Fix #​3319: KeyDownEvent field reference was replaced with KeyDown event reference.
  • Fix #​3349: Make ILSpy ready for .NET 10
  • Fix #​3361: switch-value conversion was losing its target type.

And many other fixes, for a full list click here.

9.0-preview3

ILSpy 9.x is based on .NET 8.0. All artifacts except the self-contained distribution are built framework-dependent, which means .NET 8.0 must be installed prior to starting ILSpy.

Breaking Changes in ICSharpCode.Decompiler

  • Remove IsRef, IsOut and IsIn flags from IParameter
  • Replace ParameterModifiers with ReferenceKind.

New Language Features

  • Update pattern detection to Roslyn 4.11.0
  • Support types that provide DisposeAsync without implementing IAsyncDisposable.
  • Add support for C# 12 primary constructors.
  • Add support for C# 12 'ref readonly' parameters

Contributions

  • Add smooth scrolling to settings panels and DecompilerTextView (see #​3244 by @​tom-englert)
  • Decompiler Settings: Checkbox in group header does not reflect state of the group (see #​3252 by @​tom-englert)
  • Various WPF-related refactorings by @​tom-englert (see #​3257, #​3266, #​3274, #​3283, #​3285, #​3291, #​3292, #​3294, #​3295, #​3297, #​3298, #​3299, #​3302, #​3308 and #​3314)
  • Ignore empty version directories of dotnet (#​3265 by @​Herrmel)
  • Fix Derived Types Node always being empty (#​3280 by @​Applesauce314)

Enhancements

  • Allow running tests on ARM64 (see #​3231)
  • Alow collecting analyzers annotated with ExportAnalyzerAttribute (see #​3239)
  • Fix #​3237: Use ref readonly locals for readonly.ldelema
  • Fix #​3001: Support new resources format in ResourcesFile/ResXResourceWriter
  • Fix #​3134: Include newobj, initobj and call instructions in TypeInstantiatedByAnalyzer
  • Fix #​3089: Add comment regarding .constraint prefix expressed as cast in C#

Bug fixes

  • Fix #​3209: Ensure using directives are added for extension methods in higher level patterns such as: foreach -> GetEnumerator(), collection initializer -> Add() and deconstruction -> Deconstruct().
  • Fix #​3255: Ignore exceptions while decoding sequence point blobs.
  • Fix #​2166: Unnecessary uint casts/conversions for certain bitwise operations
  • Fix #​3310: Filter out copy-constructor only if it's an actual record type.

And many other fixes, for a full list click here.

9.0-preview2

ILSpy 9.x is based on .NET 8.0. All artifacts except the self-contained distribution are built framework-dependent, which means .NET 8.0 or later must be installed prior to starting ILSpy.

Breaking Changes

  • @​file support with breaking changes to command line options #​3205
  • New single instance handling #​3212

Enhancements

  • Replace native interop CommandLineToArgvW with parsing in Process.Unix.cs from System.Diagnostics.Process #​3201
  • Natural Sort without interop #​3196
  • AOT and x-plat changes #​3203

Bug fixes

  • Fix #​3197: Bug when trying to read a bundle/archive file
  • Fix #​3189: Support primitive types in Expression.Constant(object) pattern in Expression Trees

9.0-preview1

ILSpy 9.x is based on .NET 8.0. All artifacts except the self-contained distribution are built framework-dependent, which means .NET 8.0 or later must be installed prior to starting ILSpy.

Breaking Changes

  • ICSharpCode.Decompiler: Added MetadataFile base class for PEFile
  • ICSharpCode.Decompiler: IModule.PEFile is now named IModule.MetadataFile
  • ICSharpCode.Decompiler/ILSpyX: Added IFileLoader API to allow for easier extensibility of supported file formats (see #​3191)
  • ILSpy: Split BAML decompiler into library and add-in (see #​3178)
  • ILSpy/ILSpyX: Moved non-UI analyzer API to ILSpyX (see #​3186)
  • ICSharpCode.Decompiler: IProjectFileWriter and IProjectInfoProvider APIs are now public (see #​3151 and #​3191)

Performance

  • Activate Dynamic Adaptation To Application Sizes (DATAS) (#​3122).
  • RDP hardware acceleration (#​3122): Enabling hardware acceleration for Remote Desktop Protocol (RDP) to boost performance.

New Language Features

  • Update pattern-detection to Roslyn v4.9.2
  • Added support for switch on (ReadOnly)Span<char> using a compiler-generated hash function.
  • Added new a.GetValueOrDefault(b) -> a ?? b transform for side-effect-free default values.

Enhancements

  • Added support for reading standalone ECMA-335 metadata (portable PDB and other metadata blobs) (see #​3149)
  • Added support for reading WebCIL assemblies (IL embedded in WASM) (see #​3184)
  • #​3118: Add "Clear assembly list" menu item.
  • #​2893: Add option to disable automatic assembly loading.
  • IL output: Add indentation level to make it easier to see custom attributes belonging to interface implementations.
  • IL output: Print metadata token of custom attribute.

Contributions

  • Fix metadata display of DynamicLocalVariable and DefaultNamespace custom debug information (#​3111, @​ElektroKill)
  • Read and use tuple element names and dynamic type information from PDBs (#​3114, @​ElektroKill)
  • Adjust colors of AvalonEdit built-in highlightings for dark themes (#​3138, @​ltrzesniewski)
  • Bugfix: infinite loop in DetermineEffectiveAccessibility (#​3164, @​yzdeveloper)
  • TreeView: Add referenced types, members and exported types under references (#​3092, @​fowl2)
  • Add support for Mono C# compiler 2.6.4 pinned region with array variable (#​3110, @​ElektroKill)

Bug fixes

  • Fix #​3072: Ignoring resources with the same name as a namespace.
  • Fix bug in UnknownType: Ensuring that the FullName of nested unknown types contains the outer type name(s), not just the namespace and nested type name.
  • Fix #​3153: Always using SHA1 for public key tokens.
  • Fix ILSpy for ZIP files/VSIX with bundle signatures: Enabling ILSpy to open ZIP files and VSIX packages containing bundle signatures.
  • Omit package entries from the treeview that denote the directory.
  • Fix #​3142: Exception when analyzing source of library with global assembly attributes
  • Fix #​3113: Remove GetAlternativeName and instead reuse existing names, if there are no conflicts.

And many other fixes, for a full list click here.

Commits viewable in compare view.

Updated Microsoft.Build.Locator from 1.7.8 to 1.9.1.

Release notes

Sourced from Microsoft.Build.Locator's releases.

1.9.1

What's Changed

New Contributors

Full Changelog: microsoft/MSBuildLocator@v1.8.1...v1.9.1

1.8.1

What's Changed

New Contributors

Full Changelog: microsoft/MSBuildLocator@v1.7.8...v1.8.1

Commits viewable in compare view.

Updated Microsoft.CodeAnalysis.CSharp.Features from 4.11.0 to 4.14.0.

Updated Microsoft.CodeAnalysis.CSharp.Scripting from 4.11.0 to 4.14.0.

Release notes

Sourced from Microsoft.CodeAnalysis.CSharp.Scripting's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Caching.Memory from 9.0.0 to 9.0.8.

Release notes

Sourced from Microsoft.Extensions.Caching.Memory's releases.

9.0.8

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.7...v9.0.8

9.0.7

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.6...v9.0.7

9.0.6

Bug Fixes

  • Read messages from binlog if process output is missing build finished message (#​114676)
    Improves reliability of the WebAssembly build process by reading messages from the binlog when the process output does not contain the expected build finished message, preventing build failures in certain scenarios.

  • Fix debugger app hangs related to thread exit (#​114917)
    Resolves an issue where applications could hang during debugging when threads exit, ensuring smoother debugging experiences and preventing deadlocks.

  • [Mono] Workaround MSVC miscompiling sgen_clz (#​114903)
    Addresses a compiler miscompilation issue in MSVC affecting the Mono garbage collector, improving runtime stability and correctness on affected platforms.

  • Do not set the salt or info if they are NULL for OpenSSL HKDF (#​114877)
    Fixes a cryptographic issue by ensuring that the salt or info parameters are not set when they are NULL in OpenSSL HKDF, preventing potential errors or unexpected behavior in key derivation.

  • [Test Only] Fix Idn tests (#​115032)
    Corrects issues in Internationalized Domain Name (Idn) tests, ensuring accurate and reliable test results for domain name handling.

  • JIT: revised fix for fp division issue in profile synthesis (#​115026)
    Provides a more robust fix for floating-point division issues in JIT profile synthesis, improving numerical accuracy and preventing incorrect calculations.

  • Handle OSSL 3.4 change to SAN:othername formatting (#​115361)
    Updates certificate handling to accommodate changes in Subject Alternative Name (SAN) formatting introduced in OpenSSL 3.4, ensuring compatibility and correct parsing of certificates.

  • [Mono] Fix c11 ARM64 atomics to issue full memory barrier (#​115635)
    Fixes atomic operations on ARM64 in Mono to issue a full memory barrier, ensuring correct synchronization and preventing subtle concurrency bugs.

Performance Improvements

  • [WinHTTP] Certificate caching on WinHttpHandler to eliminate extra call to Custom Certificate Validation (#​114678)
    Improves HTTP performance by caching certificates in WinHttpHandler, reducing redundant calls to custom certificate validation and speeding up secure connections.

  • Improve distribute_free_regions (#​115167)
    Optimizes memory management by enhancing the algorithm for distributing free memory regions, leading to better memory utilization and potentially improved application performance.

Technical Improvements

  • Strip trailing slash from source dir for cmake4 (#​114905)
    Refines build scripts by removing trailing slashes from source directories when using CMake 4, preventing potential build path issues and improving build reliability.

  • Don't expose TrustedCertificatesDirectory() and StartNewTlsSessionContext() to NetFx (#​114995)
    Restricts certain internal APIs from being exposed to .NET Framework, reducing surface area and preventing unintended usage.

  • Add support for more libicu versions (#​115376)
    Expands compatibility by supporting additional versions of the International Components for Unicode (ICU) library, enhancing globalization features across more environments.

Infrastructure

  • Run outerloop pipeline only for release branches, not staging/preview (#​115011)
    Optimizes CI/CD resources by limiting the outerloop pipeline to run only on release branches, reducing unnecessary test runs and speeding up development workflows.

... (truncated)

9.0.5

Release

What's Changed

9.0.4

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.3...v9.0.4

9.0.3

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.2...v9.0.3

9.0.2

Release

What's Changed

9.0.1

Release

What's Changed

Description has been truncated

Bumps coverlet.collector from 6.0.2 to 6.0.4
Bumps coverlet.msbuild from 6.0.2 to 6.0.4
Bumps ICSharpCode.Decompiler from 8.2.0.7535 to 9.1.0.7988
Bumps Microsoft.Build.Locator from 1.7.8 to 1.9.1
Bumps Microsoft.CodeAnalysis.CSharp.Features from 4.11.0 to 4.14.0
Bumps Microsoft.CodeAnalysis.CSharp.Scripting from 4.11.0 to 4.14.0
Bumps Microsoft.Extensions.Caching.Memory from 9.0.0 to 9.0.8
Bumps Microsoft.Extensions.DependencyModel from 9.0.0 to 9.0.8
Bumps Microsoft.NET.Test.Sdk from 17.11.1 to 17.14.1
Bumps Microsoft.SymbolStore from 1.0.555801 to 1.0.641201
Bumps NuGet.Commands from 6.12.1 to 6.14.0
Bumps NuGet.Frameworks from 6.12.1 to 6.14.0
Bumps NuGet.PackageManagement from 6.12.1 to 6.14.0
Bumps NuGet.ProjectModel from 6.12.1 to 6.14.0
Bumps NuGet.Versioning from 6.12.1 to 6.14.0
Bumps OpenAI from 2.1.0 to 2.3.0
Bumps Spectre.Console.Cli from 0.49.1 to 0.50.0
Bumps Spectre.Console.Testing from 0.49.1 to 0.50.0
Bumps System.CommandLine from 2.0.0-beta4.22272.1 to 2.0.0-beta7.25380.108
Bumps System.Configuration.ConfigurationManager from 9.0.0 to 9.0.8
Bumps System.IO.Abstractions from 21.1.3 to 22.0.15
Bumps System.IO.Abstractions.TestingHelpers from 21.1.3 to 22.0.15
Bumps System.Reflection.MetadataLoadContext from 9.0.0 to 9.0.8
Bumps xunit from 2.9.2 to 2.9.3
Bumps xunit.runner.visualstudio from 2.8.2 to 3.1.4

---
updated-dependencies:
- dependency-name: coverlet.collector
  dependency-version: 6.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-dependencies
- dependency-name: coverlet.msbuild
  dependency-version: 6.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-dependencies
- dependency-name: ICSharpCode.Decompiler
  dependency-version: 9.1.0.7988
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dotnet-dependencies
- dependency-name: Microsoft.Build.Locator
  dependency-version: 1.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-dependencies
- dependency-name: Microsoft.CodeAnalysis.CSharp.Scripting
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-dependencies
- dependency-name: Microsoft.Extensions.Caching.Memory
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-dependencies
- dependency-name: Microsoft.Extensions.DependencyModel
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-dependencies
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 17.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-dependencies
- dependency-name: Microsoft.SymbolStore
  dependency-version: 1.0.641201
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-dependencies
- dependency-name: NuGet.Commands
  dependency-version: 6.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-dependencies
- dependency-name: NuGet.ProjectModel
  dependency-version: 6.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-dependencies
- dependency-name: NuGet.Frameworks
  dependency-version: 6.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-dependencies
- dependency-name: NuGet.PackageManagement
  dependency-version: 6.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-dependencies
- dependency-name: NuGet.Versioning
  dependency-version: 6.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-dependencies
- dependency-name: OpenAI
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-dependencies
- dependency-name: Spectre.Console.Cli
  dependency-version: 0.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-dependencies
- dependency-name: Spectre.Console.Testing
  dependency-version: 0.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-dependencies
- dependency-name: System.CommandLine
  dependency-version: 2.0.0-beta7.25380.108
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-dependencies
- dependency-name: Microsoft.CodeAnalysis.CSharp.Features
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-dependencies
- dependency-name: System.Configuration.ConfigurationManager
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-dependencies
- dependency-name: System.IO.Abstractions
  dependency-version: 22.0.15
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dotnet-dependencies
- dependency-name: System.IO.Abstractions.TestingHelpers
  dependency-version: 22.0.15
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dotnet-dependencies
- dependency-name: System.Reflection.MetadataLoadContext
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-dependencies
- dependency-name: xunit
  dependency-version: 2.9.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-dependencies
- dependency-name: xunit.runner.visualstudio
  dependency-version: 3.1.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dotnet-dependencies
...

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 Aug 25, 2025
Copy link
Author

dependabot bot commented on behalf of github Sep 1, 2025

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot bot closed this Sep 1, 2025
@dependabot dependabot bot deleted the dependabot/nuget/CSharpRepl.Services/dotnet-dependencies-8993c9da17 branch September 1, 2025 07:09
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.

0 participants