使用dotnet-buildpack将ASP.NET 5应用程序部署到Heroku时出错

我正在尝试使用 Heroku dotnet-buildpack将ASP.NET 5应用程序部署到Heroku.这是一个通过Visual Studio 2015创建的全新应用程序,我还没有进行任何代码修改.在部署时,我收到错误:

remote: Downloading dnvm as script to '/app/.dnx/dnvm'
remote:
remote: Appending source string to /app/.profile
remote: Type 'source /app/.dnx/dnvm/dnvm.sh' to start using dnvm
remote: Architecture must be x86 or x64.
remote:
remote:  !     Push rejected, failed to compile ASP.NET 5 app
remote:
remote: Verifying deploy...

在我的global.json中,我将架构指定为“x86”.

{
  "projects": [ "src", "test" ],
  "sdk": {
    "version": "1.0.0-beta5",
    "runtime": "clr",
    "architecture": "x86"
  }
}

如何配置我的应用程序以解决此错误?

任何帮助表示赞赏.

最佳答案 我的解决方案在这里描述 https://github.com/heroku/dotnet-buildpack/issues/4.希望这有帮助

点赞