Closed datvm closed 1 year ago
Hi,
This is a (known) issue on the MAUI side. See https://github.com/dotnet/maui/issues/16244.
Maybe you can try the suggested workaround: https://github.com/dotnet/maui/issues/16244#issuecomment-1694418415
Closing this here as it is not something we can solve on our side.
π Bug Report
I also posted a question on StackOverflow but I guess it may be an issue with this package.
I just created a MAUI Blazor project (hybrid) in Visual Studio. My SDK is the latest (
7.0.400
) and my VS is also up-to-date (17.7.3
).However, the referred packages (
Microsoft.Extensions.Logging.Abstractions
is in interest here) stays at7.0.0
:Now when I try to install
Microsoft.Fast.Components.FluentUI
, it requiresMicrosoft.Extensions.Logging.Abstractions (>= 7.0.1)
so I receive this error:Now from Visual Studio's Nuget UI I cannot install the package directly so I did through the CLI and there is this error:
So I just add it directly to my project (
.csproj
):Now after a restore and reload, I can add
Microsoft.Fast.Components.FluentUI
package but every time I build, I get this warning:How do I get rid of that annoying message? What is the problem here? Can I fix it or MS forgot to update their SDK references?
I also just noticed that with
(>= 7.0.0)
requirement, shouldn't it be able to resolve with7.0.1
? Is it actually a Nuget problem?π» Repro or Code Sample
N/A
π€ Expected Behavior
I should be able to install
Microsoft.Fast.Components.FluentUI
packageπ― Current Behavior
Microsoft.Extensions.Logging.Abstractions (>= 7.0.1)
requirement.π Possible Solution
Either the SDK reference needs to upgrade it to 7.0.1 or the library needs to be packed with 7.0.0 requirement.
π¦ Context
π Your Environment