6 writes to State
aspire (1)
Backchannel\ResourceSnapshotMapper.cs (1)
129State = snapshot.State,
Aspire.Cli.Tests (5)
Commands\ResourcesCommandTests.cs (5)
162new ResourceJson { Name = "frontend", DisplayName = "frontend", ResourceType = "Project", State = "Running" }, 163new ResourceJson { Name = "postgres", DisplayName = "postgres", ResourceType = "Container", State = "Running" }, 164new ResourceJson { Name = "redis", DisplayName = "redis", ResourceType = "Container", State = "Starting" } 204new ResourceJson { Name = "frontend", DisplayName = "frontend", ResourceType = "Project", State = "Running" }, 205new ResourceJson { Name = "postgres", DisplayName = "postgres", ResourceType = "Container", State = "Running" }
1 reference to State
Aspire.Cli.Tests (1)
Commands\ResourcesCommandTests.cs (1)
193Assert.Equal("Starting", parsedLines[2]!.State);