5

I am running following command to publish .NET CORE 5.0 web api project using command line on windows 10 box.

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

But I am getting following error:

C:\ProgramFiles\dotnet\sdk\5.0.403\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.RuntimeIdentifierInference.targets(126,5): error NETSDK1031: It is not supported to build or publish a self-contained application without specifying a RuntimeIdentifier. You must either specify a RuntimeIdentifier or set SelfContained to false. [c:\test\Service\emp.csproj]

Why I am getting this error when I am specifying --runtime flag? I am able to publish using Visual Studio without any issues.

4

1 回答 1

6

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

<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>
于 2021-12-06T22:37:00.710 回答