8 references to Pid
Aspire.Hosting (4)
Dashboard\ResourcePropertySnapshotMetadata.cs (2)
49
(KnownResourceTypes.Executable, KnownProperties.Executable.
Pid
) => (ResourcePropertyExecutableProcessIdDisplayName, true, 3),
52
(KnownResourceTypes.Project, KnownProperties.Executable.
Pid
) => (ResourcePropertyExecutableProcessIdDisplayName, true, 2),
Dcp\ResourceSnapshotBuilder.cs (2)
188
ResourcePropertySnapshotMetadata.Create(KnownResourceTypes.Project, KnownProperties.Executable.
Pid
, executable.Status?.ProcessId),
212
ResourcePropertySnapshotMetadata.Create(KnownResourceTypes.Executable, KnownProperties.Executable.
Pid
, executable.Status?.ProcessId),
Aspire.Hosting.Tests (4)
Dcp\ResourceSnapshotBuilderTests.cs (2)
57
AssertHighlightedProperty(snapshot, KnownProperties.Executable.
Pid
, "Process ID", isSensitive: false, sortOrder: 3);
86
AssertHighlightedProperty(snapshot, KnownProperties.Executable.
Pid
, "Process ID", isSensitive: false, sortOrder: 2);
DistributedApplicationTests.cs (2)
2162
GetResourcePropertyValue(e, KnownProperties.Executable.
Pid
) is int,
2166
var executablePid = Assert.IsType<int>(GetResourcePropertyValue(executableEvent, KnownProperties.Executable.
Pid
));