Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Macro in visual Studio 2010 that loads settings file

I'm just looking for a way (maybe a macro?) to load a settings file. Ideally I'd like to be able to run this as a shortcut from the desktop too. I googled it, but maybe I didn't hit the right keywords.

like image 504
roundcrisis Avatar asked Sep 01 '10 10:09

roundcrisis


1 Answers

This is a macro that works for me.

Sub MySub()
    DTE.ExecuteCommand("Tools.ImportandExportSettings", "/import:""<full path to settings file>""")
End Sub

Some Docs here

like image 68
roundcrisis Avatar answered Sep 29 '22 06:09

roundcrisis