introduced custom actions file to execute devenv.exe /setup as admin

This commit is contained in:
Christian Resma Helle
2012-11-11 00:06:25 +01:00
parent 2575c0ce27
commit bf7d815274
20 changed files with 645 additions and 77 deletions
@@ -0,0 +1,10 @@
namespace ReswCodeGen.CustomActions
{
public class Program
{
static void Main(string[] args)
{
InstallerClass.SetupVisualStudio();
}
}
}