You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$manifest= [xml](Get-Content-Path $ManifestPath)
$product=$manifest.Products.Product|Where-Object {$_.name-eq$ProductName}
if ($null-eq$product)
{
throw"The value for the ProductName parameter '$ProductName' does not exist in the manifest file $ManifestPath"
}
$productSrcPath=$ExecutionContext.InvokeCommand.ExpandString($product.source)
Results in this warning:
Variable 'product' is not initialized. Non-global
variables must be initialized. To fix a violation of
this rule, please initialize non-global variables.