error NETSDK1031:不支持在不指定 RuntimeIdentifier 的情况下构建或发布自包含应用程序

Posted

技术标签:

【中文标题】error NETSDK1031:不支持在不指定 RuntimeIdentifier 的情况下构建或发布自包含应用程序【英文标题】:error NETSDK1031: It is not supported to build or publish a self-contained application without specifying a RuntimeIdentifier 【发布时间】:2022-01-12 02:00:06 【问题描述】:

我正在运行以下命令以使用 windows 10 框上的命令行发布 .NET CORE 5.0 web api 项目。

c:\test\Service>dotnet publish -c release Emp.sln --framework net5.0 /p:DebugType=None /p:DebugSymbols=false --nologo --self-contained --runtime linux-x64 -v m

但我收到以下错误:

C:\ProgramFiles\dotnet\sdk\5.0.403\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.RuntimeIdentifierInference.targets(126,5):错误 NETSDK1031:不支持在不指定 RuntimeIdentifier 的情况下构建或发布自包含应用程序。您必须指定 RuntimeIdentifier 或将 SelfContained 设置为 false。 [c:\test\Service\emp.csproj]

为什么我在指定 --runtime 标志时收到此错误?我可以使用 Visual Studio 发布,没有任何问题。

【问题讨论】:

您可以在 github 上查看问题,也许您会找到适合您的情况的解决方案:github.com/dotnet/sdk/issues/10902 和 github.com/dotnet/sdk/issues/10566 【参考方案1】:

我可以通过在 .csproj 文件中添加 <RuntimeIdentifier>linux-x64</RuntimeIdentifier> 行来解决此问题:

<Project Sdk="Microsoft.NET.Sdk.Web">

  <PropertyGroup>
    <TargetFramework>net5.0</TargetFramework>
    <RuntimeIdentifier>linux-x64</RuntimeIdentifier>

有了这个,我可以使用命令行构建解决方案,但是在 Windows 机器上通过 Visual Studio 运行应用程序时,出现错误:

“emp”调试配置文件中指定的调试可执行文件“c:\user\testuser\emp\bin\debug\net5.0\linux-x64\textdb.exe”不存在

我能够通过将其添加到 csproj 文件来解决第二个问题(能够使用 Visual Studio 在 Windows 上构建并能够使用命令行发布目标 Linux)。在 RuntimeIdentifiers

中指定多个值
 <PropertyGroup>
    <TargetFramework>net5.0</TargetFramework>
    <RuntimeIdentifiers>win10-x64;linux-x64</RuntimeIdentifiers>
  </PropertyGroup>

【讨论】:

以上是关于error NETSDK1031:不支持在不指定 RuntimeIdentifier 的情况下构建或发布自包含应用程序的主要内容,如果未能解决你的问题,请参考以下文章

如何修复 Azure 管道错误 NETSDK1152?

在不使用 PayPal 按钮的情况下将 PayPal .NET SDK 集成到网站中

.NET 6 Preview 5

sh ERROR 1031(HY000)第5898行:表存储引擎

“不支持”在不指定 RuntimeIdentifier 的情况下构建或发布自包含应用程序

1031 Fence