请参阅下面的屏幕截图,我需要在DynamicObject
中使用.net standard 1.6 library project
。
但是,我无法通过右键单击Visual Studio 2017 Enterprise(15.2)中的Dependencies
和Add Reference
来添加任何其他依赖项。
有人知道如何在DynamicObject
定位.net standard class library project
中使用netstandard 1.6
吗?
答案 0 :(得分:3)
您需要为System.Dynamic.Runtime
命名空间中的类型添加System.Dynamic
NuGet包。在netstandard2.0
中,它会自动显示。
dotnet add package System.Dynamic.Runtime