-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Closed
Labels
First-Time-IssueEasy issues first time contributors can work on to learn about this projectEasy issues first time contributors can work on to learn about this projectIssue-BugIssue has been identified as a bug in the productIssue has been identified as a bug in the productUp-for-GrabsUp-for-grabs issues are not high priorities, and may be opportunities for external contributorsUp-for-grabs issues are not high priorities, and may be opportunities for external contributorsWG-Enginecore PowerShell engine, interpreter, and runtimecore PowerShell engine, interpreter, and runtime
Description
PowerShell/src/System.Management.Automation/engine/remoting/common/RemoteSessionHyperVSocket.cs
Lines 45 to 57 in a16f3eb
| public Guid VmId | |
| { | |
| get { return _vmId; } | |
| set { _vmId = value; } | |
| } | |
| public Guid ServiceId | |
| { | |
| get { return _serviceId; } | |
| set { _vmId = value; } | |
| } |
Why is the setter for ServiceId assigning to _vmId? It is unclear whether this is intended behaviour or not.
Metadata
Metadata
Assignees
Labels
First-Time-IssueEasy issues first time contributors can work on to learn about this projectEasy issues first time contributors can work on to learn about this projectIssue-BugIssue has been identified as a bug in the productIssue has been identified as a bug in the productUp-for-GrabsUp-for-grabs issues are not high priorities, and may be opportunities for external contributorsUp-for-grabs issues are not high priorities, and may be opportunities for external contributorsWG-Enginecore PowerShell engine, interpreter, and runtimecore PowerShell engine, interpreter, and runtime