Deployment Package Does Not Contain iisApp

I am trying to upload zip files of a published .net project to Amazon's elastic beanstalk, but it continues to throw an error in the logs saying that iisApp does not exist. How to fix?

+6
source share
1 answer

Elastic Beanstalk expects a WebDeploy package, not just an encrypted web application. You probably want to run:

msbuild <web.csproj> /t:Package /p:Configuration=Release /p:PackageLocation=<outputdirectory> 

to create a WebDeploy package.

+6
source

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


All Articles