Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 454 Bytes

File metadata and controls

29 lines (22 loc) · 454 Bytes

Include

Use include to access functions that are in another script file.

Let's say this is the content of build_utils.ps1

function foo {
	write-host hi
}

function bar {
	write-host bye
}

You can use foo and bar in your build script:

include ".\build_utils.ps1"

task default -depends Compile

Task Compile {
	foo
	bar
}

Tips: You can have multiple include statements inside your build script.