Created
June 7, 2009 04:07
-
-
Save sergiopereira/125142 to your computer and use it in GitHub Desktop.
Visual Studio Macros that I often use
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Sub ImportPresentationMode() | |
DTE.ExecuteCommand("Tools.ImportandExportSettings", "-import:""C:\somepath\Presentation.vssettings""") | |
End Sub | |
Public Sub ImportGenericEnvironment() | |
DTE.ExecuteCommand("Tools.ImportandExportSettings", "-import:""C:\somepath\normal.vssettings""") | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment