Skip to content

Instantly share code, notes, and snippets.

@sergiopereira
Created June 7, 2009 04:07
Show Gist options
  • Save sergiopereira/125142 to your computer and use it in GitHub Desktop.
Save sergiopereira/125142 to your computer and use it in GitHub Desktop.
Visual Studio Macros that I often use
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