Search code examples
powershellpowershell-4.0

Does powershell have the ability to run tasks?


Is there an equivalent to Powershell make? The equivalent of make/rake/cake/py-make, even Gulp...etc? I primarily desire a task runner for build automation. I want to be able to select and compose tasks like I can in Gulp.

Ideally, the solution would be native to Powershell. There are very tight security restrictions on software installations for the project. The power of Google has failed me.


Solution

  • nothing built-in, but there are different solutions like psake or invoke-build. maybe something else.

    You can also use VScode for that, you can define tasks (basically run scripts or something) and run them on save or on check out, etc