Certain user specific configurations are stored in .csproj.user. How do I tell MS Visual Studio to store this information in the .csproj every time?
Certain user specific configurations are stored in .csproj.user. How do I tell MS Visual Studio to store this information in the .csproj every time?
You can't. Visual Studio stores the user-specific settings in the
.csproj.user
file, and the build settings in the.csproj
file. This is to allow multiple users to work on a project, which is critical when working in a team with source control.That being said, you can always delete the
.user
file, and it will be recreated, at any point in time.