我有一个包含几个 WCF 客户端的 PCL。下面是project.json:
"dependencies": {
"NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
"System.ComponentModel.Annotations": "4.3.0",
"System.Net.Http": "4.3.0",
"System.Reflection": "4.3.0",
"System.ServiceModel.NetTcp": "4.3.0",
"System.ServiceModel.Primitives": "4.3.0"
},
"frameworks": {
"netstandard1.4": {}
}
使用 asp.net core 1.0.1 一切正常,但是在升级我的 asp.net core 项目中的所有内容后,我的 wcf 客户端进行的所有调用都失败并出现一个可怕的错误:
An unhandled exception of type 'System.ExecutionEngineException' occurred in System.Private.CoreLib.ni.dll
我的 asp.net 核心应用程序的 project.json 是这样的:
{
"dependencies": {
"Microsoft.AspNetCore.Diagnostics": "1.1.0",
"Microsoft.AspNetCore.Mvc": "1.1.0",
"Microsoft.AspNetCore.Razor.Tools": {
"version": "1.1.0-preview4-final",
"type": "build"
},
"Microsoft.AspNetCore.Routing": "1.1.0",
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
"Microsoft.AspNetCore.StaticFiles": "1.1.0",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
"Microsoft.Extensions.Configuration.Json": "1.1.0",
"Microsoft.Extensions.Logging": "1.1.0",
"Microsoft.Extensions.Logging.Console": "1.1.0",
"Microsoft.Extensions.Logging.Debug": "1.1.0",
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0",
"Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.1.0"
},
"tools": {
"BundlerMinifier.Core": "2.2.306",
"Microsoft.AspNetCore.Razor.Tools": "1.1.0-preview4-final",
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final"
},
"frameworks": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.1.0"
},
"MySharedProject": {
"target": "project"
}
},
"imports": [
"netstandard"
]
}
},
}
如果我保持一切不变,只需将版本更改为 1.0.1 就Microsoft.NETCore.App
一切正常。我在 VS 输出窗口中看到的最后一件事是调用加载System.Xml.XmlDocument
包。然后它就崩溃了。