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
$EnabledExperimentalFeatures contains Microsoft.PowerShell.Utility.PSManageBreakpointsInRunspace #18970
Comments
|
To be clear, Presumably, your user-level That raises the question whether it's worth issuing a warning when an obsolete or invalid name is encountered (an invalid name is currently quietly ignored, unless its name starts with |
|
My powershell.config.json file contains: {
"Microsoft.PowerShell:ExecutionPolicy": "Bypass",
"ExperimentalFeatures": [
"PSNullConditionalOperators",
"PSSubsystemPluginModel",
"PSDesiredStateConfiguration.InvokeDscResource",
"PSAnsiRendering",
"PSAnsiProgress",
"PSAnsiRenderingFileInfo",
"PSNativePSPathResolution",
"Microsoft.PowerShell.Utility.PSManageBreakpointsInRunspace",
"PSNativeCommandArgumentPassing",
"PSStrictModeAssignment",
"PSExec",
"PSCustomTableHeaderLabelDecoration",
"PSModuleAutoLoadSkipOfflineFiles",
"PSNativeCommandErrorActionPreference"
]
}So you can see there several features that have gone mainstream and two that have been removed. The question is why does "Microsoft.PowerShell.Utility.PSManageBreakpointsInRunspace" show up when the others don't. |
|
It probably is due to the magic that my previous comment alluded to (I haven't checked the source code): that |
|
That However, it is incidental to the problem at hand, whose repro bypasses the issue by piping |
|
To close the tangent re |



Prerequisites
Steps to reproduce
$EnabledExperimentalFeatureslists an experimental feature that is no longer experimental. The content of the variable should match the list of enabled items fromGet-ExperimentalFeatures.Expected behavior
PS> Compare-Object ($enabledExperimentalFeatures | Sort-Object) (Get-ExperimentalFeature | Where-Object Enabled | Select-Object -ExpandProperty Name | Sort-Object)No difference
Actual behavior
Error details
n/aEnvironment data
Visuals
No response
The text was updated successfully, but these errors were encountered: