When the output window says
The application URL is not set or is not an HTTP/HTTPS URL so the browser will not be opened to the application.
It's not a mistake. It just tells you that it will not automatically open a browser window.
You can see how your application works in the browser:
1) Go to the address http: // localhost: 19080 / (if you have not changed the port) or
2) Add the URL to the project properties
- In Solution Explorer, right-click the project (in this case, the vote) with a cluster icon to open the property pages.


Then restart your project.
Now the browser window will open automatically and you will not see The application URL is not set... in the output window. You will see Launching the browser with URL http://localhost:19080/to open the application. instead in the output window.
source share