2016-11-18 2 views
0

Ich habe eine PCL, die ein paar WCF-Clients enthält. Unten ist die project.json:asp.net core 1.1 WCF-Client verursacht Absturz der gesamten App

"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": {} 
} 

Alle mit asp.net Kern 1.0.1 geht in Ordnung war, aber alles in meinem asp.net Kernprojekt auf dem Upgrade alle von meinem WCF-Client Anrufe mit einem schrecklichen scheitern Fehler:

An unhandled exception of type 'System.ExecutionEngineException' occurred in System.Private.CoreLib.ni.dll 

die project.json für meine asp.net Kernanwendung ist dies:

{ 
"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" 
    ] 
} 
}, 
} 

wenn ich alles gleich verlassen, und ändern Sie einfach die Version 1.0.1 auf dem Microsoft.NETCore.App ev Alles funktioniert gut. Das letzte, was ich im VS-Ausgabefenster sehe, ist ein Aufruf zum Laden des System.Xml.XmlDocument Pakets. Dann stürzt es einfach ab.

Antwort