How to change debug port in Visual Studio 2017? I checked the property pages but to no avail.
相关问题
- How to know full paths to DLL's from .csproj f
- Importing NuGet references through a local project
- Visual Studio 2019 - error MSB8020: The build tool
- 'System.Threading.ThreadAbortException' in
- VS2017 RC - The following error occurred when tryi
相关文章
- How to show location of errors, references to memb
- How to track MongoDB requests from a console appli
- Visual Studio Hangs on Loading UI Library
- How to use Mercurial from Visual Studio 2010?
- Copy different file to output directory for releas
- Edit & Continue doesn't work
- Calling a .Net Framework 4 (or Mono) assembly from
- “Csc.exe” exited with code -1073741819
Go into the .sln file and edit the port there.
For example, if it's currently on port:
50722
Then just do a replace:
50722
replace with:50723
and it should build just fine. There should be about 5 spots it'll replace.For me, I was able to find it with the following steps in Visual Studio 2017:
Project file properties
In VS 2017, I was able to update it in the project properties, instead of the solution properties.
Right-click on your project file, then choose Properties.
On the Web tab find the Project Url section. It should say something like
Simply modify it to your desired port number and save.