Cake.Powershell
Cake.Powershell copied to clipboard
Powershell addin for Cake
Hi, Just want to say thanks for this project! I saw you updated the powershell addin and just gave it a go and but seem to be getting this error...
``` assembly 'Cake.Powershell, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null' is referencing an older version of Cake.Core (1.0.0). For best compatibility it should target Cake.Core version 2.0.0. Could not load D:\jenkins\workspace\Pushpay_Pushpay_PR-26486\tools\Addins\Cake.Powershell.1.0.1\lib\net5.0\Cake.Powershell.dll (missing System.Management.Automation, Version=7.1.2.0,...
Is it possible to add support for cake 2.0/NET 6.0?
I am running a StartPowershellFile on Cake ``` Task("Deploy") .IsDependentOn("Publish") .Description("Deploy new function") .Does(() => { DoInDirectory(publishScriptsPath, () => { StartPowershellFile(upsertApim, args => { args.Append("param1", param1); args.Append("param2", param2); args.Append("param3",param3); });...
Hi, I'm trying to use Cake.Powershell with a Powershell module that I download and install via Install-Module from the PSGallery. I can run these commands in an admin Powershell window,...
We've recently released new icons for Cake extensions, to help more easily differentiate Cake Addins, Modules, Recipes, etc. [](https://github.com/cake-contrib/graphics) More information: https://github.com/cake-contrib/graphics
Given a `netstandard2.0` TFM we should be able to run scripts using `dotnet cake`. ~I'll have a crack and submit a PR...~ this is trickier than I thought due to...
Hi, I'm currently running multiple powershell tasks in parallel. I'd like to be able to stop them all if one of them fail. I am already cancelling the cancellationtoken but...
I wrote this in my cake script ``` var collection= StartPowershellFile("C:\\Project\\Spacebuilder\\greenblue.ps1", new PowershellSettings() { ComputerName = config.Server.ServerName, Username = config.Server.UserName, Password = config.Server.Password, FormatOutput = true, LogOutput = true });...