Rihan Meij
Rihan Meij

Reputation: 1759

Automating VSIX deployment to Visual Studio Galleries

We would like to automate the upload of Visual Studio Extensions that we have written to the Visual Studio Gallery.

We currently use a combination of CruiseControl.Net, Msbuild files and Powershell scripts to automate the deployment of all the bits and pieces of our framework.

However we would like to automate the deployment of the development tools that we have created to the Visual Studio Gallery.

These tools are built using Visual Studio 2012.

Thanks for any helpful advice or pointers.

Upvotes: 4

Views: 388

Answers (2)

forki23
forki23

Reputation: 2814

It's possible to do this with Canopy and FAKE. I just did it in https://github.com/fsprojects/Paket.VisualStudio/blob/master/build.fsx#L177

Upvotes: 2

JaredPar
JaredPar

Reputation: 754763

Unfortunately there is no good way to do this. There is no publicly exposed API for uploading extensions. The only way I'm aware of is to create an instance of a web browser and simply automate the process of filling out the forms and navigating through the menus.

Upvotes: 1

Related Questions