Hi All,
I am trying to automate the Package Manager Console window in Visual Studio 2012. I am DTE object to achieve the same. By using below code line I am able to open the Package Manager Console window.
DTE.ExecuteCommand("View.PackageManagerConsole");
Now I want to pass few parameter to this window. Basically below parameter I want to pass
add-migration 'migrationName'
Also I want to pass the default project name to the PMC window. Please help me to achieve this functionality.
Thanks,
Sanjay