.net core Cloudfoundry buildpack.net版本错误

.net core Cloudfoundry buildpack.net版本错误,.net-core,version,cloud-foundry,buildpack,.net Core,Version,Cloud Foundry,Buildpack,部署.net core 2.1.0项目时,出现以下错误: -----> Installing dotnet-framework 2.0.3 **ERROR** DEPENDENCY MISSING IN MANIFEST: Version 2.0.3 of dependency dotnet-framework is not supported by this buildpack. The versions of dotnet-framework supported in

部署.net core 2.1.0项目时,出现以下错误:

-----> Installing dotnet-framework 2.0.3
       **ERROR** DEPENDENCY MISSING IN MANIFEST:

Version 2.0.3 of dependency dotnet-framework is not supported by this buildpack.
The versions of dotnet-framework supported in this buildpack are:
    - 1.0.5
    - 1.0.10
    - 1.0.11
    - 1.1.2
    - 1.1.7
    - 1.1.8
    - 2.0.0
    - 2.0.7
    - 2.1.0
我项目中的所有解决方案都以.net核心框架2.1.0为目标,所以我不明白为什么会这样。 我的项目中有依赖项,其中一些,如NETStandard.Library和Microsoft.NETCore.DotNetAppHost,是版本2.0.3,但这真的很重要吗?(我也不认为NetStandard.Library存在高于2.0.3的版本。)

该项目在我的本地计算机上运行良好,在我们升级buildpack和target.net framework以及通过NuGet的各种依赖项之前,在主机上运行良好

以下是完整日志:

您可以尝试将RuntimeFrameworkVersion固定到特定版本:

<RuntimeFrameworkVersion>2.0.7</RuntimeFrameworkVersion>
2.0.7

您是否有可以链接到复制错误的示例项目?