错误 NETSDK1031:不支持在未指定 RuntimeIdentifier 的情况下构建或发布自包含应用程序
error NETSDK1031: It is not supported to build or publish a self-contained application without specifying a RuntimeIdentifier
我正在 运行 遵循命令在 windows 10 box 上使用命令行发布 .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.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 毫无问题地发布。
我可以通过在 .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>
我正在 运行 遵循命令在 windows 10 box 上使用命令行发布 .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.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 毫无问题地发布。
我可以通过在 .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>