Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将已发布的 .net 项目的文件的 zip 文件上传到 Amazon elastic beanstalk,但它一直在日志中抛出错误,说 iisApp 不存在。怎么修?
Elastic Beanstalk 需要一个 WebDeploy 包,而不仅仅是一个压缩的 Web 应用程序。您可能想要运行:
msbuild <web.csproj> /t:Package /p:Configuration=Release /p:PackageLocation=<outputdirectory>
创建一个 WebDeploy 包。