Drake
Drake

Reputation: 2703

Create Package Manager Console Command

I don't know much about NuGet, I only used it a few times to download a few things into my Visual Studio projects. I need to make a command, that can be entered into the Package Manager Console in Visual Studio, that would then create a solution with a variable number of C# projects in it (the variable would be passed as an argument in the command). I've seen it done before, but I have no idea where to start.

Upvotes: 0

Views: 155

Answers (1)

ErikEJ
ErikEJ

Reputation: 41749

You could look at how Entity Framework does it - http://entityframework.codeplex.com

Upvotes: 1

Related Questions