About Dot Sourcing
# Get-Foo.ps1
function Get-Foo{
write-host "getting foo"
}function IncludingFile{
. "./Get-Foo.ps1"
}# call this function will do nothing
IncludingFile
# Get-Foo is still not visible here.. IncludingFile
Get-Foo # is visible here.Last updated