Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Visual Studio 11 beta missing the "Add Deployable Assemblies" menu option?

Tags:

In Visual Studio 2010 SP1, there is an option on the right-click menu on a web project to Add Deployable Assemblies. Phil Haack blogged about it here.

In Visual Studio 11 beta and Visual Studio 2012, this option appears to be missing. Thankfully, you can easily round trip solutions between VS 2010 and VS 11 so I could just open the solution in VS 2010 to add the MVC assemblies to the _bin_deployableAssemblies folder.

Is it just my installation thats broken or do I need to install anything else to get this working?

like image 811
Geoff Appleford Avatar asked Mar 06 '12 16:03

Geoff Appleford


1 Answers

The Add Deployable Assemblies dialog was a feature that enabled you to deploy MVC or Web Pages projects. It was necessary because in older versions all the assemblies were installed into the GAC on your dev machine but you wouldn't necessarily know if that was the case on the server. Thus this tooling gesture that made your project bin-deployable.

Starting with MVC 3 Tools Update we are now using Nuget package references, which means that your project is automatically bin-deployable. Since the tooling gesture is no longer necessary it was removed from VS 11.

like image 71
marcind Avatar answered Oct 16 '22 17:10

marcind