当尝试使用Microsoft服务配置编辑器打开我的web.config时,我得到了关于找不到扩展名的例外情况。 WCF应用程序可以正常使用扩展,如果我删除它们,那么Microsoft服务配置编辑器将打开web.config没有问题吗?
<extensions>
<behaviorExtensions>
<add name="protobuf" type="ProtoBuf.ServiceModel.ProtoBehaviorExtension, protobuf-net, Version=2.0.0.580, Culture=neutral, PublicKeyToken=257b51d87d2e4d67" />
<add name="customBehaviorExtension_Integration" type="MyApp.ServiceImplementation.CustomRequestInterceptorBehaviorExtension_Integration, MyApp.ServiceImplementation" />
</behaviorExtensions>
</extensions>
这些扩展稍后会在3个地方使用。
我知道这个问题已经存在了很长一段时间,但是暂时还没有解决方案,那么暂时删除这些扩展名吗?