Where can I change the port of a Web Site Project (WCF) in Visual Studio 2013? -



Where can I change the port of a Web Site Project (WCF) in Visual Studio 2013? -

for web site projects in visual studio 2010 port changed in properties after setting use dynamic ports false. alternative not nowadays in visual studio 2013. can port there changed straight in sln file?

the solution worked me is:

web.config of website:

endpoint address="http://....."

csproj file of project (or vbproj):

<developmentserverport>56179</developmentserverport> <iisurl>localhost:56179/</iisurl>

editing these parameters create able alter port want.

wcf visual-studio-2013 port web-site-project

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -