Skip to content

Commit 8b05677

Browse files
authored
Stop using 'Open PowerShell' and OPS in code (PowerShell#1838)
1 parent 5f4dcf9 commit 8b05677

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

build.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ function Start-PSBootstrap {
658658
[switch]$Force
659659
)
660660

661-
log "Installing Open PowerShell build dependencies"
661+
log "Installing PowerShell build dependencies"
662662

663663
Push-Location $PSScriptRoot/tools
664664

src/Microsoft.PackageManagement.PackageSourceListProvider/Sdk/Constants.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public static class Constants
2020
public static readonly string SettingsFileName = "PSL.config";
2121

2222
/// <summary>
23-
/// Sample JSON file containing open powershell entry
23+
/// Sample JSON file containing powershell entry
2424
/// </summary>
2525
public static readonly string JSONFileName = "PSL.json";
2626
public static readonly string CatFileName = "PSL.cat";
@@ -161,4 +161,4 @@ internal static class SwidTag
161161
}
162162
}
163163

164-
#endif
164+
#endif

src/powershell-native/Install-PowerShellRemoting.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function Register-WinRmPlugin
3737
$pluginAbsolutePath,
3838

3939
#
40-
# Expected Example: microsoft.ops.5.1
40+
# Expected Example: microsoft.powershell-core.6.0
4141
#
4242
[string]
4343
[parameter(Mandatory=$true)]

src/powershell/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public sealed class ManagedPSEntry
2222
public static int Main(string[] args)
2323
{
2424
#if CORECLR
25-
// Open PowerShell has to set the ALC here, since we don't own the native host
25+
// PowerShell has to set the ALC here, since we don't own the native host
2626
string appBase = System.IO.Path.GetDirectoryName(typeof(ManagedPSEntry).GetTypeInfo().Assembly.Location);
2727
return (int)PowerShellAssemblyLoadContextInitializer.
2828
InitializeAndCallEntryMethod(

test/powershell/Modules/PackageManagement/Install-PackageProvider.Tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ Describe "Install-Save-Package with multiple sources" -Tags "Feature" {
510510
}
511511

512512
Describe "install-packageprovider with Scope" -Tags "Feature" {
513-
# PENDING a lot of these tests because jobs are broken on OPS
513+
# PENDING a lot of these tests because jobs are broken on PowerShell from GitHub
514514

515515
BeforeAll {
516516
if ($IsWindows)

0 commit comments

Comments
 (0)