Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Launch Profile Initializer: Unable to parse the launchSettings.json file

Microsoft Visual Studio shows the following error box:

Launch Profile Initializer

Unable to parse the launchSettings.json file.

Where to find which project is causing this issue? There is no detailed information in the Output window.

like image 652
TN. Avatar asked Jan 23 '26 15:01

TN.


1 Answers

Your launchSettings.json has to contain at least applicationUrl e.g.

{
  "iisSettings": {
    "windowsAuthentication": false,
    "anonymousAuthentication": true,
    "iisExpress": {
      "applicationUrl": "http://localhost:55555",
      "sslPort": 44395
    }
  }
}

Source: https://developercommunity.visualstudio.com/idea/1020438/launch-profile-initializer.html

like image 161
Neurion Avatar answered Jan 26 '26 08:01

Neurion



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!