amazon web services - Deployment package did not contain an iisApp -
i'm trying upload zip of files of published .net project amazon elastic beanstalk keeps throwing error in logs saying iisapp not there. how fix?
elastic beanstalk expects webdeploy package, not zipped web application. you'll want run:
msbuild <web.csproj> /t:package /p:configuration=release /p:packagelocation=<outputdirectory>
to create webdeploy package.
Comments
Post a Comment