ASP.NET kernel does not start in IIS after upgrading to version 1.1

I updated my .json project to use the new asp.net kernel v1.1, and now when I try to run IIS Express for debugging, I get the following errors:

The program '[8784] dotnet.exe' exited with the code -2147450749 (0x80008083).

The program '[7352] iisexpress.exe' exited with code 0 (0x0).

My updated project.json:

"dependencies": { "Microsoft.NETCore.App": { "version": "1.1.0", "type": "platform" }, "Microsoft.ApplicationInsights.AspNetCore": "1.0.0", "Microsoft.AspNetCore.Mvc": "1.1.0", "Microsoft.AspNetCore.Routing": "1.1.0", "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0", "Microsoft.AspNetCore.Server.Kestrel": "1.1.0", "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0", "Microsoft.Extensions.Configuration.FileExtensions": "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.IdentityModel.Tokens": "5.1.0", "Microsoft.AspNetCore.Authentication": "1.1.0", "Microsoft.AspNetCore.Authentication.JwtBearer": "1.1.0", "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0", "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0", "Microsoft.EntityFrameworkCore": "1.1.0", "Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final", "SapientGuardian.EntityFrameworkCore.MySql": "7.1.10", "AutoMapper": "5.1.1" }, "tools": { "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview4-final" }, "frameworks": { "netcoreapp1.1": { "imports": [ "dotnet5.6", "portable-net45+win8" ] } }, 

Maybe I am missing something in my .json project for updating? Or does one of the packages not work with v1.1? Any help is appreciated.

NOTE. When I get back to 1.0, everything will be fine.

+5
source share
1 answer

Using the comments of HenkMollema and our friends on the Core team, I was able to solve this problem. For an answer see this github .

The key updated all packages, as suggested in link 1.1.0, or their corresponding updated version of the package for version 1.1.0. The table in the github link above lists the correct links for all packages that have been updated in version v1.1.

I also installed v1.1 SDK and Runtime in here .

+10
source

Source: https://habr.com/ru/post/1259928/


All Articles