Copying visual studio 2010 installed extensions options to another computer

前端 未结 4 2366
春和景丽
春和景丽 2021-02-19 11:42

I have visual studio 2010 installed and configured with some extensions at my home computer. Now i want to copy all installed extensions settings from my home computer to work c

4条回答
  •  無奈伤痛
    2021-02-19 12:04

    For VS 2013 you can find them by this (not sure if this also works for VS 2010 but maybe it helps someone):

     var config1 = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoamingAndLocal);
     MessageBox.Show("Config path: " + config1.FilePath);
    

提交回复
热议问题