BlazorStrap服务器不支持.NET 6

kh212irz  于 2023-04-07  发布在  .NET
关注(0)|答案(1)|浏览(130)
services.AddBootstrapCss();
services.AddScoped<ILoggerRepository, LoggerRepository>();

我的IDE抱怨AddBootstrapCss

Severity    Code    Description Project File    Line    Suppression State
Error   CS1061  'IServiceCollection' does not contain a definition for 'AddBootstrapCss' and no accessible extension method 'AddBootstrapCss' accepting a first argument of type 'IServiceCollection' could be found (are you missing a using directive or an assembly reference?)

参考https://blazorstrap.io/V1/
这是一个.NET Core 5到.NET Core 6的升级,所以我不确定这个替换会是什么。

jk9hmnmh

jk9hmnmh1#

经过测试,发现问题的原因是官方文档没有更新,blazorstrap版本〈= 1.5.1时支持AddBootstrapCss。

在最新的文档中,快速使用教程中没有更新,但我发现了一个官方链接无效的示例,you can refer to this repo

相关问题