Azure ASP.NET RC1 Deployment Failure

时光怂恿深爱的人放手 提交于 2019-12-06 10:32:59

This happened when RC2 was released, which caused an issue with the RC1 deployments. Please use the following workaround (from here):

  • Copy .deployment and deploy.cmd from https://github.com/davidebbo-test/AspNet5RC1
  • Edit this line in deploy.cmd to point to your project.json
  • Also if your project is on something other than rc1-update1 (e.g. if it's on beta8), you'll need to fix up all the rc1 references in that file (there are two).
  • Commit both files at the root of your repository.

That being said, you should be looking into moving to RC2 :)

One other thing to check is if you have any "open" library version requirements. For me, the issue at hand was with my 1.0.0-* dependencies. Since they were "open" on the version, they were attempting to grab rc2 dependencies which were incompatible. Once I changed these to a fixed RC1, things resolved themselves. I was unable to update to RC2 because some of my other libraries were incompatible.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!