在 Razor Class 库中引用 类

Referencing classes in a Razor Class Library

我创建了一个新的 Razor Class 库(使用 "dotnet new razorclasslib")。然后我在新库中创建了一个名为 Models 的文件夹,它包含一个 class 和以下测试代码:

using System;

namespace TestLibrary.Models
{
    public class TestModel
    {
        public string TestMethod { get; set; }
    }
}

但是,当我尝试在 Web 应用程序项目中使用此 class(通过将其称为 TestLibrary.Models.TestModel)时,我一直被告知 TestLibrary.Models 命名空间没有存在。确切的错误是:

The type or namespace name 'Models' does not exist in the namespace 'TestLibrary' (are you missing an assembly reference?) [TestApplication]

我假设我遗漏了一些简单的东西,只是不知道是什么。

此问题与此处发布的问题有某种关联:。一旦解决了这个问题就消失了。