Reverting PSEdition name changes.

This commit is contained in:
Manikyam Bavandla 2016-08-03 16:27:47 -07:00
parent 5eef2cacc4
commit 93d4129a3b
2 changed files with 2 additions and 2 deletions

View file

@ -186,7 +186,7 @@ Type **$PSVersionTable** in your PowerShell session, you will see something like
Name Value
---- -----
PSVersion 5.1.10032.0
PSEdition Linux
PSEdition Core
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
BuildVersion 3.0.0.0
CLRVersion

View file

@ -43,7 +43,7 @@ namespace Microsoft.PowerShell.PackageManagement.Cmdlets {
internal readonly OrderedDictionary<string, List<SoftwareIdentity>> _resultsPerName = new OrderedDictionary<string, List<SoftwareIdentity>>();
protected List<PackageProvider> _providersNotFindingAnything = new List<PackageProvider>();
#if CORECLR
internal static readonly string[] ProviderFilters = new[] { "Packagemanagement", "Provider", "PSEdition_PowerShellCore" };
internal static readonly string[] ProviderFilters = new[] { "Packagemanagement", "Provider", "PSEdition_Core" };
#else
internal static readonly string[] ProviderFilters = new[] { "Packagemanagement", "Provider" };
#endif