I Use Win 10 and VS 2015. I'm trying to open project but. it doesnt loaded this message appear :
the web application is configured to use iis the web server could not be found
I Use Win 10 and VS 2015. I'm trying to open project but. it doesnt loaded this message appear :
the web application is configured to use iis the web server could not be found
Two things you need to look at, these are:
Hope that helps
Open the csproj file (with notepad if necessary) and change this setting:
<WebProjectProperties>
<UseIIS>True</UseIIS>
</WebProjectProperties>
To :
<WebProjectProperties>
<UseIIS>False</UseIIS>
</WebProjectProperties>
Then reload the project (right-click the project in Solution Explorer and click reload).
Also see the answer by Doug S for more information and useful comments: The Web Application Project [...] is configured to use IIS. The Web server [...] could not be found.