aspnet / Announcements

Subscribe to this repo to be notified about major changes in ASP.NET Core and Entity Framework Core
Other
1.66k stars 80 forks source link

[Breaking change]: CommandLineUtils retired #477

Open yecril71pl opened 2 years ago

yecril71pl commented 2 years ago

Description

The package CommandLineUtils was removed from ASP.NET 2.0.

The discussion issue was https://github.com/dotnet/extensions/issues/257.

This change was overlooked because we failed to follow breaking changes in extensions. It is important to document it here because it is not mentioned at 1.x to 2.0 either.

Version

Other (please put exact version in description textbox)

Previous behavior

using Microsoft.Extensions.CommandLineUtils;

New behavior

using McMaster.Extensions.CommandLineUtils;

Type of breaking change

Reason for change

The library has outgrown the scope of the ASP.NET project where it had been developed.

Recommended action

Migration steps include the following alternatives:

Affected APIs

The whole package CommandLineUtils is unsupported.