Konstantin Zadiran
Konstantin Zadiran

Reputation: 1541

Is there any way to automatize Visual Studio 2013?

I seek a way to automatize my Visual Studio processes like building projects, starting tests, etc. Just like bat files for many other things.

Is there any way to do it? Maybe special scripting language or api?

Upvotes: 1

Views: 37

Answers (1)

devio
devio

Reputation: 37215

Yes, you can call devenv and MSBuild from the command line, and invoke actions and build tasks on projects and solutions.

I used to have batch files for VS 2008 and 2010 (described here).

Upvotes: 1

Related Questions