Description
FsConfig depends on Microsoft.Extensions.Configuration but this dependency is only needed when using IConfigurationRoot. Wouldn't it make sense to split the package in two so the users not using Microsoft's extension do not need to needlessly deal with this dependency?
Repro steps
Add FsConfig package to a project and do dotnet restore.
Expected behavior
Can reference a "core" FsConfig without dependency on Microsoft.Extensions.Configuration and the NU1603 warning does not appear.
Actual behavior
Getting this warning:
warning NU1603: FsConfig 2.1.5 depends on Microsoft.Extensions.Configuration (>= 0.0.0) but Microsoft.Extensions.Configuration 0.0.0 was not found. An approximate best match of Microsoft.Extensions.Configuration 1.0.0 was resolved.
Context
- Os: Ubuntu 18.04
- .NET Core 3.1.101
- FsConfig 2.1.5
Description
FsConfig depends on
Microsoft.Extensions.Configurationbut this dependency is only needed when usingIConfigurationRoot. Wouldn't it make sense to split the package in two so the users not using Microsoft's extension do not need to needlessly deal with this dependency?Repro steps
Add FsConfig package to a project and do
dotnet restore.Expected behavior
Can reference a "core" FsConfig without dependency on
Microsoft.Extensions.Configurationand the NU1603 warning does not appear.Actual behavior
Getting this warning:
Context