-
Notifications
You must be signed in to change notification settings - Fork 241
Update .NET, PSReadLine, and Nuget packages #2262
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -118,11 +118,16 @@ namespace Microsoft.PowerShell.EditorServices.Hosting | |||||
| } | ||||||
| } | ||||||
|
|
||||||
| task RestorePsesModules -If (-not (Test-Path "module/PSReadLine") -or -not (Test-Path "module/PSScriptAnalyzer")) { | ||||||
| Write-Build DarkMagenta "Restoring bundled modules" | ||||||
| task RestorePsesModules { | ||||||
| # NOTE: When updating module versions, ensure they are also saved to the CFS feed | ||||||
| Save-PSResource -Path module -Name PSScriptAnalyzer -Version "1.24.0" -Repository $PSRepository -TrustRepository -Verbose | ||||||
| Save-PSResource -Path module -Name PSReadLine -Version "2.4.4-beta4" -Prerelease -Repository $PSRepository -TrustRepository -Verbose | ||||||
| if (-not (Test-Path "module/PSScriptAnalyzer")) { | ||||||
| Write-Build DarkMagenta "Restoring PSScriptAnalyzer module" | ||||||
| Save-PSResource -Path module -Name PSScriptAnalyzer -Version "1.24.0" -Repository $PSRepository -TrustRepository -Verbose | ||||||
| } | ||||||
| if (-not (Test-Path "module/PSReadLine")) { | ||||||
| Write-Build DarkMagenta "Restoring PSReadLine module" | ||||||
| Save-PSResource -Path module -Name PSReadLine -Version "2.4.5" -Repository $PSRepository -TrustRepository -Verbose | ||||||
|
||||||
| Save-PSResource -Path module -Name PSReadLine -Version "2.4.5" -Repository $PSRepository -TrustRepository -Verbose | |
| Save-PSResource -Path module -Name PSReadLine -Version "2.4.5" -Prerelease -Repository $PSRepository -TrustRepository -Verbose |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Downgrading
Microsoft.PowerShell.SDKfrom 7.5.2 to 7.4.13 appears to be a version rollback rather than an update. Please verify this is intentional. If compatibility issues exist with 7.5.2, consider documenting the reason for the downgrade.