本机编译需要 RuntimeIdentifier。尝试运行 dotnetpublish 并指定 -r 选项值。 .net 8 中的错误

问题描述 投票:0回答:1

当尝试在 .net 8 中发布新项目时,我收到错误:

Error : RuntimeIdentifier is required for native compilation. Try running dotnet publish with the -r option value specified.
.net visual-studio visual-studio-2022
1个回答
0
投票

我发现原因是因为我的 .csproj 文件中有这个:

<PublishAot>true</PublishAot>

一旦我将其更改为 false,我现在就可以发布了。

© www.soinside.com 2019 - 2024. All rights reserved.