Visual Studio损坏了引用版本



我有一个visualstudio项目,其中有一些损坏的引用。

<Reference Include="System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" />

我注意到这可以通过将其更改为来解决

<Reference Include="System.ServiceModel" />

然而,由于我有很多不完整的引用,我想在我的系统上提供这些dll。我该怎么做?

更新项目以使用.Net 4.8,该项目将支持ServiceModel。由于该模块主要处理http流量,因此需要将其更新为更安全的版本,这足以证明升级是合理的。

最新更新