PowerShellGetv2
PowerShellGetv2 copied to clipboard
PowerShellGet is the Package Manager for PowerShell
Steps to reproduce ------------------ Install fresh Windows 10 1903 with no additional software ```powershell Install-Module -Name PackageManagement -Force -AllowClobber Install-Module -Name PowerShellGet -Force -AllowClobber Import-Module -Name PackageManagement -ErrorAction Stop Import-Module...
There seems to be an issue with the -Name parameter for the Get-Package version. It does not work.  After I search for the packages from a specific provider the...
Steps to reproduce ------------------ ```powershell ``` Expected behavior ----------------- ```none ``` Actual behavior --------------- ```none ``` Environment data ---------------- ```powershell > $PSVersionTable ``` ```powershell > Get-Module -ListAvailable PowerShellGet,PackageManagement ``` ```powershell...
stdOut parsing will fail on machines using non en-US locale. So I replaced stdOut parsing with looking for the "*.nupkg" in $OutputPath. Should fix #597
Steps to reproduce ------------------ ```powershell Publish-Module -Name xxxxx -NuGetApiKey xxxx -Verbose ``` Expected behavior ----------------- ``` Work normally ``` Actual behavior --------------- ``` Publish-PSArtifactUtility : Failed to generate the compressed...
When i try to install PSReadLine 2.1.0 Beta 1 on PowerShell 7 i get the following error:  This is the information: 
When installing modules from an untrusted repository, I have to specify `-Force` instead of `-Confirm:$false` to suppress the prompt. The issue with using `-Force` is that it forces the reinstall...
I'm unable to install modules with prerelease dependencies despite me include `-AllowPrerelease` switch to `Install-Module`. Steps to reproduce ------------------ **ModuleA:** ```powershell @{ ModuleVersion = '0.1.0' GUID = '081f4c91-b4d8-441a-89e5-543859f68f2f' PrivateData =...
This command seems to have been missed out in the list. Also remove redundant comma after `Get-PSRepository`, in a multi-line array commas are not needed. cc @alerickson
Publish fails on poor searching of a nupkg file. The issue is reported [here](https://github.com/PowerShell/PowerShellGet/issues/510). On non en-US environments, MSBuild produces culture variant message. `New-NugetPackage` relies on the English string. ...