We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when testing script in session nuget dialog is being displayed changing from:
# verify NuGet package $nuget = get-packageprovider nuget if (-not $nuget -or ($nuget.Version -lt 2.8.5.22)) { log "installing nuget package..." install-packageprovider -name NuGet -minimumversion 2.8.5.201 -force }
changing to:
# verify NuGet package $nuget = get-packageprovider nuget -Force if (-not $nuget -or ($nuget.Version -lt 2.8.5.22)) { log "installing nuget package..." install-packageprovider -name NuGet -minimumversion 2.8.5.201 -force }
The text was updated successfully, but these errors were encountered:
Merge pull request #21 from jagilber/iss18
2935874
fix Issues #12 #14 #15 #16 #18 rds-update-certificate script.ps1
Merged into develop
Sorry, something went wrong.
jagilber
No branches or pull requests
when testing script in session nuget dialog is being displayed
changing from:
changing to:
The text was updated successfully, but these errors were encountered: