Как добавить пакет system.servicemodal в ядро ​​asp.net vscode - PullRequest
0 голосов
/ 22 ноября 2018

Я новичок в ядре .NET и пытаюсь использовать службу WCF. Сгенерировал прокси-класс с помощью svcutil в Microsoft SDKs / Windows / v7.0A / Bin, когда я использую сгенерированный прокси-класс и конфигурацию и попытался запустить с помощью dotnetзапустите получение ошибки как

error CS0246: The type or namespace name 'Order' could not be found (are you missing a using directive or an assembly reference?)

error CS0234: The type or namespace name 'MessageContractAttributeAttribute' does not exist in the namespace 'System.ServiceModel' (are you missing an assembly reference?)

error CS0246: The type or namespace name 'IsWrapped' could not be found (are you missing a using directive or an assembly reference?)

error CS0234: The type or namespace name 'OperationContractAttributeAttribute' does not exist in the namespace 'System.ServiceModel' (are you missing an assembly reference?)

Попытался добавить System.ServiceModel.Primitives в vscode, но не получилось получить ошибку

error NU1100: Unable to resolve 'System.ServiceModel.Primitives (>= 4.5.3)' for '.NETCoreApp,Version=v2.1'

Попробовал ниже шагов

Какдобавить ссылки на сборки в коде Visual Studio?

я не могу найти сборку system.serviceModal

кто-нибудь поможет решить эту проблему

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...