https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#appendruntimeidentifiert
ooutputpath
The AppendRuntimeIdentifierToOutputPath property controls whether the
runtime identifier (RID) is appended to the output path. The .NET SDK
automatically appends the target framework and, if present, the
runtime identifier to the output path. Setting
AppendRuntimeIdentifierToOutputPath to false prevents the RID from being
appended to the output path.
For example, for a .NET 5.0 app and an RID of win10-x64, the output path
changes from bin\Debug\net5.0\win10-x64 to bin\Debug\net5.0 with the
following setting:
XML
Copy
<PropertyGroup>
<AppendRuntimeIdentifierToOutputPath>
false
</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>
【 在 yuyeyuye (小叶子) 的大作中提到: 】
: rt
: 各位大侠:
: 目前本人遇到一个棘手的问题,我将我的工程从dotnet core 2.2 升级到了 3.1,但发现 pipeline的publish命令:
: ...................
--
FROM 221.218.140.*