我是蛋糕制作的新手。我想从 Cake 脚本运行 Microsoft appcenter 命令。我尝试使用 cake.powershell https://cakebuild.net/addins/powershell/
StartPowershellFile("./appcenter.ps1");
// appcenter.ps1 刚刚为 Appcenter 提供了 CLI 命令“ appcenter test run uitest --app \"5678999\" --devices \"7738\" --app-path ./iPhone.ipa --test-series \"master \" --locale \"en_US\" --build-dir /iPhone/bin/Debug "
这没有用。
我也试过
StartProcess("./appcenter.ps1");
来自https://cakebuild.net/dsl/process/
任何人都可以建议或提供示例代码如何从 cake 脚本运行 CLI 命令?我需要为 Microsoft Appcenter 工具运行 CLI。