views:

158

answers:

2

I changed some parameters and now I don't remember how to "go back". I'd like to know if it's possible to reset the build settings. I don't mean the IDE settings(on tools->import/export).

Thanks

A: 

Can you the previous/saved version of your Visual Studio project (*.vcproj) from your software version control system?

ChrisW
Hmm, no. I don't mean resetting this project's settings. I mean the default settings VS uses when creating a new project. Since I changed them in one project, it seems to use this new ones in all new projects.
devoured elysium
+1  A: 

The command "devenv /resetsettings" will restore Visual Studio back to its original factory state.

You can find list of devenv switches here.

Mahin