Skip to content

Use PSRL release and filter out previous betas #745

New issue

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

Merged
merged 13 commits into from
Sep 13, 2018
Prev Previous commit
Next Next commit
Try more thigns
  • Loading branch information
Robert Holt committed Sep 11, 2018
commit af7fa233374a2f0c7a8f7c2a7c4d65bdadeccc76
7 changes: 4 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ environment:

install:
- ps: |
powershell -Command { Install-Module -Name PowershellGet,PackageManagement -force -confirm:$false -verbose }
Get-Module PowerShellGet,PackageManagement | Remove-Module -Force -Verbose
Install-Module -Name PowerShellGet -MinimumVersion 1.6 -Force
Install-Module -Name PackageManagement -MinimumVersion 1.1.7.0 -Force
powershell -Command { Install-Module -Name PowershellGet -MinimumVersion 1.6 -force -confirm:$false -verbose }
powershell -Command { Install-Module -Name PackageManagement -MinimumVersion 1.1.7.0 -Force -Confirm:$false -Verbose }
Import-Module -Name PowerShellGet -MinimumVersion 1.6 -Force
Import-Module -Name PackageManagement -MinimumVersion 1.1.7.0 -Force
Install-PackageProvider -Name NuGet -Force | Out-Null
Import-PackageProvider NuGet -Force | Out-Null
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted | Out-Null
Expand Down