How to set the start URL of a Visual Studio project worldwide?

I need to change the project start URL. When I set the start URL on the properties page, it is written to the csproj.user file, not csproj . I tried putting <StartExternalURL> in csproj in the <WebProjectProperties> section, but that didn't work.

Is there any way to set this property and extend it to the entire team, or does everyone just have to make changes manually?

+4
source share
1 answer

You must add the csproj.user file to the source control. When everyone checks this out, their start URL will be set correctly.

0
source

All Articles