.NET Core publication error: "Cannot find msdeploy.exe, install it and try again"

When I try to publish a .NET Core project to the Visual Studio 2015 file system, I get this error:

"Unable to find msdeploy.exe, please install it and try again"
+4
source share
1 answer

Download and install Web Deploy v3.6(or higher) from Microsoft.

This command in the script deployment should find msdeploy.exe:

Executing command ["C:\Program Files (x86)\IIS\Microsoft Web Deploy V3\msdeploy.exe" -source:manifest=...]

Make sure .exe is in your path (you may have to restart Visual Studio to get the new path).

+7
source

Source: https://habr.com/ru/post/1659927/


All Articles