Packaging in Visual Studio Code
Information about compiling PowerShell Scripts into executables with VS Code.
Last updated
@{
Root = 'c:\Users\adamr\Desktop\test\test\test.ps1'
OutputPath = 'c:\Users\adamr\Desktop\test\out'
Package = @{
Enabled = $true
Obfuscate = $false
HideConsoleWindow = $false
DotNetVersion = 'v4.6.2'
FileVersion = '1.0.0'
FileDescription = ''
ProductName = ''
ProductVersion = ''
Copyright = ''
RequireElevation = $false
ApplicationIconPath = ''
PackageType = 'Console'
}
Bundle = @{
Enabled = $true
Modules = $true
# IgnoredModules = @()
}
}