How to change the development environment to another language in Visual Studio?

When I first installed Visual Studio, I decided to set up my environment for developing Visual C ++. Now I work mainly in C # and want to change this setting to a C # environment.

How to change environment settings from one language to another in Visual Studio?

+41
visual-studio development-environment
Jun 08 '09 at 22:20
source share
2 answers

Tools β†’ Import and Export Settings β†’ Import Selected Environment Settings ...

A dialog box appears asking if you want to save the current settings. If you made extensive settings and you might want to return to them later, you should save them.

Then click "Next." You will be prompted to import a set of environment settings. At the top, there will be default environment settings configured for each language. In your case, you should choose C #.

If you want to re-import the saved settings, you will do it the same way - just go to the saved settings file in the last step of the wizard.

+59
Jun 08 '09 at 22:22
source share

You can also reset all settings from the command line :

devenv /resetsettings 

Then select everything again when prompted.

Note. I prefer "General Developer Options" if you intend to do development in different technological areas (C ++, C #, VB, etc.).

+9
Jun 09 '09 at 2:11
source share



All Articles