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的升级,所以我不确定这个替换会是什么。
1条答案
按热度按时间jk9hmnmh1#
经过测试,发现问题的原因是官方文档没有更新,blazorstrap版本〈=
1.5.1
时支持AddBootstrapCss。在最新的文档中,快速使用教程中没有更新,但我发现了一个官方链接无效的示例,you can refer to this repo。