Failed to start IIS Express in Visual Studio 2017 RC

If the web application running in Visual Studio 2015 Update 3 is fine. I ported the project to Visual Studio 2017 RC and compiled it successfully. When debugging an IIS Express application, it ends after you reset the message below on the VS 2017 RC output panel:

The program '[7896] iisexpress.exe: Program Trace' has exited with code 0 (0x0).
The program '[8488] dotnet.exe' has exited with code 0 (0x0).
The program '[8488] dotnet.exe: Program Trace' has exited with code 0 (0x0).
The program '[7896] iisexpress.exe' has exited with code 0 (0x0).

What is the solution for starting and debugging a project?

+4
source share
2 answers

In my case with Visual Studio 2017 Community Edition, I tried the following:

  • Delete IISExpress configuration folder in documents
  • Delete hidden .vs in the root of the project
  • Restart Visual Studio 2017 and the computer.

, "". - .

+3

, "commandName": "Project" launchSettings.json . , VS 2017

0

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


All Articles