Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error while Publishing Web App in Visual Studio Professional 2013

I am trying to publish my Web App in Visual Studio Professional 2013 but getting the following error Error Message

I got the same question asked over here but no useful answer. Can anyone please help

like image 617
Naved Ansari Avatar asked Dec 25 '15 12:12

Naved Ansari


3 Answers

You probably will be using older version, that was having an issue. refer detail [here]

Install the newer web deployment tool, should work.

like image 114
Anil Avatar answered Oct 04 '22 11:10

Anil


which .net version are you using.
check web deploy version. if vs has 2 web deploy version, the vs get confuse to take which version. If it has 2 version, just uninstall vs and then instal it along with web deploy. if the Vs has one 1 web deploy version, you uninstall and install the web deploy. It will rectify your problem i hope. You can refer This link

like image 31
anand Avatar answered Oct 04 '22 11:10

anand


Check if version 9.0.0.0 of the assembly is installed in GAC. (from the VS2013 developer command prompt) gacutil /l Microsoft.Web.Deployment. Issues like this have occurred in the past where things worked, then after installing an update (or trying to install one) then reports of missing dlls, like nuget, occur.

The usual course of action is to repair the Visual Studio installation.

like image 33
Balah Avatar answered Oct 04 '22 13:10

Balah