7 writes to DisplayName
aspire (2)
Commands\ResourcesCommand.cs (1)
261
DisplayName
= snapshot.Name, // Use name as display name for now
ResourcesCommandJsonContext.ResourceJson.g.cs (1)
79
Setter = static (obj, value) => ((global::Aspire.Shared.Model.Serialization.ResourceJson)obj).
DisplayName
= value!,
Aspire.Cli.Tests (5)
Commands\ResourcesCommandTests.cs (5)
161
new ResourceJson { Name = "frontend",
DisplayName
= "frontend", ResourceType = "Project", State = "Running" },
162
new ResourceJson { Name = "postgres",
DisplayName
= "postgres", ResourceType = "Container", State = "Running" },
163
new ResourceJson { Name = "redis",
DisplayName
= "redis", ResourceType = "Container", State = "Starting" }
203
new ResourceJson { Name = "frontend",
DisplayName
= "frontend", ResourceType = "Project", State = "Running" },
204
new ResourceJson { Name = "postgres",
DisplayName
= "postgres", ResourceType = "Container", State = "Running" }
2 references to DisplayName
aspire (2)
ResourcesCommandJsonContext.ResourceJson.g.cs (2)
78
Getter = static obj => ((global::Aspire.Shared.Model.Serialization.ResourceJson)obj).
DisplayName
,
411
string __value_DisplayName = ((global::Aspire.Shared.Model.Serialization.ResourceJson)value).
DisplayName
;