IIS Express will not run after upgrade to v1.1
See original GitHub issueI’ve upgraded my project.json to use the new v1.1 of asp.net core and now when I try to start IIS Express to debug, I get the following errors:
The program ‘[8784] dotnet.exe’ has exited with code -2147450749 (0x80008083). The program ‘[7352] iisexpress.exe’ has exited with code 0 (0x0).
My upgraded project.json:
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.1.0",
"type": "platform"
},
"Microsoft.ApplicationInsights.AspNetCore": "1.0.0",
"Microsoft.AspNetCore.Mvc": "1.0.1",
"Microsoft.AspNetCore.Routing": "1.0.1",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
"Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
"Microsoft.Extensions.Configuration.Json": "1.0.0",
"Microsoft.Extensions.Logging": "1.0.0",
"Microsoft.Extensions.Logging.Console": "1.0.0",
"Microsoft.Extensions.Logging.Debug": "1.0.0",
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
"Microsoft.IdentityModel.Tokens": "5.0.0",
"Microsoft.AspNetCore.Authentication": "1.0.0",
"Microsoft.AspNetCore.Authentication.JwtBearer": "1.0.0",
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.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-preview2-final"
},
"frameworks": {
"netcoreapp1.1": {
"imports": [
"dotnet5.6",
"portable-net45+win8"
]
}
},
Maybe I am missing something in my project.json needed for the upgrade? Or one of the packages is not cooperating with v1.1? Any help is appreciated.
NOTE: When I change back to 1.0 everything runs fine.
Issue Analytics
- State:
- Created 7 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
ASP.NET Core won't run in IIS after upgrade to v1.1
I've upgraded my project.json to use the new v1.1 of asp.net core and now when I try to start IIS Express to debug,...
Read more >Unable to launch the IIS Express Web server
I have one project that will not open in Visual Studio unless I change it from [RequireHttps] and then of course I need...
Read more >How to install ASP.NET 1.1 with IIS7 on Vista and Windows ...
You can find this set of components in Windows 2008 by clicking Start, and click Server Manager. Expand the left-hand treeview in Server...
Read more >Use the IIS Express Web Server - Logi Analytics
The IIS Express web server is a compact version of Microsoft IIS. It's available for free from Microsoft and Logi Analytics has chosen...
Read more >Can't start asp.net core 5.0 app in IIS Express (without ...
In the 2020.3 Version, I can not start my app using the IIS Express. IIS actaully starts but then comes up with an...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
1.0.3 release
@pranavkm Thank you.