ServiceStack v3 库是否已从 Nuget 中删除?
Have the ServiceStack v3 libraries been removed from Nuget?
有谁知道如何从 Nuget 获得 ServiceStack.Client
的 V3 版本?这个 wiki 页面似乎暗示它们应该在那里:https://github.com/ServiceStackV3/ServiceStackV3
我需要创建一个新项目来与遗留的 v3 ServiceStack 实现进行交互。我无法升级现有的 API,但新 v4 中的 JsonServiceClient
不兼容。我已经从旧版 API 中导入了合同 DLL,这导致了不兼容问题。
准确的错误是:
Error 105 The type 'ServiceStack.ServiceHost.IReturn' is defined in an assembly that is not referenced. You must add a reference to assembly 'ServiceStack.Interfaces, Version=3.9.48.0, Culture=neutral, PublicKeyToken=null'. D:\Projects\Adactus.Pulse\Main\Solutions\Integration\Mulesoft\SupplierIntegration\ScmtProcessor\InitialInstructionProcessor.cs 231 17 ScmtProcessor
他们是否偶然被移动到不同的 nuget 包名称(即 BSD 版本)?或者我需要手动开始复制 DLL 引用吗?
不,它们没有被移动,你可以看到 NuGet 上列出的所有 NuGet 包版本:
您需要下载所需的确切 v3.9.48 软件包,您链接到的 v3 页面显示了以下示例:
有谁知道如何从 Nuget 获得 ServiceStack.Client
的 V3 版本?这个 wiki 页面似乎暗示它们应该在那里:https://github.com/ServiceStackV3/ServiceStackV3
我需要创建一个新项目来与遗留的 v3 ServiceStack 实现进行交互。我无法升级现有的 API,但新 v4 中的 JsonServiceClient
不兼容。我已经从旧版 API 中导入了合同 DLL,这导致了不兼容问题。
准确的错误是:
Error 105 The type 'ServiceStack.ServiceHost.IReturn' is defined in an assembly that is not referenced. You must add a reference to assembly 'ServiceStack.Interfaces, Version=3.9.48.0, Culture=neutral, PublicKeyToken=null'. D:\Projects\Adactus.Pulse\Main\Solutions\Integration\Mulesoft\SupplierIntegration\ScmtProcessor\InitialInstructionProcessor.cs 231 17 ScmtProcessor
他们是否偶然被移动到不同的 nuget 包名称(即 BSD 版本)?或者我需要手动开始复制 DLL 引用吗?
不,它们没有被移动,你可以看到 NuGet 上列出的所有 NuGet 包版本:
您需要下载所需的确切 v3.9.48 软件包,您链接到的 v3 页面显示了以下示例: