我已将 Blazor 组件“Paging.razor”的“导入代码”从 Blazor 项目“导入”到我的 PWA CORE-5 项目中。该组件包含TagBuilder代码。使用该组件,编译器现在会显示两个错误,指示未引用“TagBuilder”。
Error Found markup element with unexpected name 'Paging'. If this is intended to be a component, add a @using directive for its namespace.
Error CS0246 The type or namespace name 'TagBuilder' could not be found (are you missing a using directive or an assembly reference?)
原始参考是:@using Microsoft.AspNetCore.Mvc.Rendering;
此参考不会自动作为原始参考。我用谷歌搜索,似乎找不到如何使用“使用”或“NuGet”来包含在我的 VS-2019 项目中。
您对引用TagBuilder或其等效项的建议将不胜感激。谢谢。