gpt4 book ai didi

c# - System.Private.ServiceModel 的问题

转载 作者:行者123 更新时间:2023-12-03 08:39:07 55 4
gpt4 key购买 nike

我创建了一个 Core 3.1 应用程序,该应用程序使用基于 .net 标准 2.0 的 Web 服务。

在本地开发环境中,一切正常。在我将其部署到 UAT (IIS) 上之前,我收到以下异常:

Exception: 
System.IO.FileNotFoundException: Could not load file or assembly 'System.Private.ServiceModel, Version=4.1.2.4, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified.
File name: 'System.Private.ServiceModel, Version=4.1.2.4, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
at MyNameSpace.Service.TheService..ctor()

研究了一段时间后,我发现this :

甄兰回答

First, copy the file%USERPROFILE%\.nuget\packages\system.private.servicemodel\4.4.2\runtimes\unix\lib\netstandard2.0\system.private.servicemodel.dll to the root of your function app. If file is not found, you candownload the nuget package from nuget.org.

Then, copy/paste below to your project's .csproj file. It will includeS.P.SM.dll for build and publishing.

<ItemGroup>
<None Update="System.Private.ServiceModel.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="CopySPSM" BeforeTargets="Build">
<Copy SourceFiles="System.Private.ServiceModel.dll" DestinationFolder="$(OutputPath)\bin" />
</Target>

我还检查过Protobuf-net has missing dependency System.Private.ServiceModelCould not load file or assembly 'System.Private.ServiceModel' in Azure Function v2没有太大进展。

我已遵循答案并确保该文件位于我的部署中,但仍然存在相同的问题,出了什么问题以及如何解决该问题?

最佳答案

当我提出这个问题时,我取得了一些进展,并想与那些可能面临同样问题的人分享我的答案。

据我了解,这是用于我的项目的 Web 服务部分,因此它在我的本地环境中提供服务。但是当我将它部署在 UAT IIS(Internet Information Server)上时,默认情况下它没有这个。

因此,将文件添加为我的问题中提到的其他答案并没有帮助。这可能与选择正确的版本有关,对此不了解。

我解决这个问题的方法是,我刚刚通过 NuGet 管理器将最新的 NuGet 包安装到我的 Web 应用程序项目中。

<ItemGroup>
<PackageReference Include="System.Private.ServiceModel" Version="4.7.0" />
</ItemGroup>

在 UAT 上重新部署后,问题得到解决,并且立即生效。

关于c# - System.Private.ServiceModel 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63094790/

55 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com