DevelopmentServerPort Conflict Deployment

I have a team of people working on a Visual Studio project (C #), and we continue to encounter this problem when a merge conflict occurs in a project file in DevelopmentServerPort. Apparently, DevelopmentServerPort is stored in the project file, not in the user settings.

Is there a way to solve this problem, except that it is forcibly bound to a specific port? This will not work, because we have several developers working on terminal servers, and they cannot use the same port.

+4
source share
1 answer

In the project properties for the web project, uncheck the "Apply server settings to all users (save to project file)" box. This makes it customizable for each user.

+10
source

Source: https://habr.com/ru/post/1315153/


All Articles