ScriptWithDependencies2Layers.ps1
<#PSScriptInfo .VERSION 1.0 .GUID 8ae94259-5c03-44b0-b153-dde945840361 .AUTHOR rebro .COMPANYNAME Microsoft Corporation .COPYRIGHT (c) 2015 Microsoft Corporation. All rights reserved. .TAGS Tag1 Tag2 Tag-ScriptWithDependencies2Layers-1.0 .LICENSEURI http://ScriptWithDependencies2Layers.com/license .PROJECTURI http://ScriptWithDependencies2Layers.com/ .ICONURI http://ScriptWithDependencies2Layers.com/icon .EXTERNALMODULEDEPENDENCIES .REQUIREDSCRIPTS DependScript1,DependScript2 .EXTERNALSCRIPTDEPENDENCIES .RELEASENOTES ScriptWithDependencies2Layers release notes #> #Requires -Module @{ ModuleName = 'Dependency3'; MaximumVersion = '3.0' } <# .DESCRIPTION Description for the ScriptWithDependencies2Layers script #> Param() Workflow Test-WorkflowFromScript_ScriptWithDependencies2Layers { Get-Date } |