GeorgeSr
GeorgeSr

Reputation: 53

IIS Express not running in Visual Studio 2019

I am developing a chat application using ASP.NET Core MVC architecture.

Initially, the project worked well and could run on IIS Express. but later I found that now the IDE is not working; the project cannot run IIS Express.

I am getting the following error as an alert message as well as in the output console when trying to run my application from Visual Studio:

Error: The program '[18268] iisexpress.exe' has exited with code 0 (0x0).

Screenshot of the alert message in the IDE: Click here to view

After a while, I restarted the project and when I run the project again, I got the following error again:

? Error: The program '[17512] iisexpress.exe' has exited with code 0 (0x0).

I am confused what is wrong with my project or IDE. Can somebody please help me to resolve this?

I checked Error running IIS-Express in Visual Studio and IIS express crashes after successfully debugged and build but they are very old posts and I could not find an answer to my problem.

Upvotes: 5

Views: 24297

Answers (1)

Karney.
Karney.

Reputation: 5031

  1. Check your solution folder for a hidden ".vs" folder.

  2. In Visual Studio, right click on the web project, chose properties and then navigated to the "web" tab. From there I changed the Project URL to another port number. For example, if it was http://localhost... - Changed it to http://localhost:43567.

enter image description here

  1. If your machine is 64bit, please go to Tools-> options -> projects and solutions:

enter image description here

Upvotes: 11

Related Questions