存在一种配置蛋糕的方法,因此它在 DotNetCorePublishSettings 内部使用自包含的开关

Exists a way to configure cake so it uses inside DotNetCorePublishSettings the switch self contained

MSBuild 有一个开关“--self-contained”,它还发布了使用过的 .NET 框架。所以蛋糕有一个函数“DotNetCorePublish”。是否存在任何方式来设置该功能以便它也提供框架?

您似乎在寻找 DotNetPublishSettings.SelfContained:

var settings = new DotNetPublishSettings
{
    SelfContained = true,
    // ...
};

DotNetPublish("./src/*", settings);