13 writes to DashboardPath
Aspire.Hosting (2)
Dcp\DcpOptions.cs (2)
155options.DashboardPath = dcpPublisherConfiguration[nameof(options.DashboardPath)]; 159options.DashboardPath = GetMetadataValue(assemblyMetadata, DashboardPathMetadataKey);
Aspire.Hosting.Tests (11)
Dashboard\DashboardResourceTests.cs (3)
39o.DashboardPath = dashboardPath; 170o.DashboardPath = dashboardPath; 463o.DashboardPath = dashboardPath;
Dcp\DcpExecutorTests.cs (7)
63var dcpOptions = new DcpOptions { DashboardPath = "./dashboard", ResourceNameSuffix = "suffix" }; 147var dcpOptions = new DcpOptions { DashboardPath = "./dashboard", ResourceNameSuffix = "suffix" }; 190var dcpOptions = new DcpOptions { DashboardPath = "./dashboard", ResourceNameSuffix = "suffix" }; 547var dcpOptions = new DcpOptions { DashboardPath = "./dashboard", ResourceNameSuffix = "suffix" }; 583var dcpOptions = new DcpOptions { DashboardPath = "./dashboard" }; 681var dcpOptions = new DcpOptions { DashboardPath = "./dashboard" }; 1306dcpOptions ??= new DcpOptions { DashboardPath = "./dashboard" };
DistributedApplicationBuilderTests.cs (1)
33o.DashboardPath = "dashboard";
5 references to DashboardPath
Aspire.Hosting (4)
Dashboard\DashboardOptions.cs (1)
26options.DashboardPath = dcpOptions.Value.DashboardPath;
Dcp\DcpOptions.cs (3)
110if (string.IsNullOrEmpty(options.DashboardPath)) 152if (!string.IsNullOrEmpty(dcpPublisherConfiguration[nameof(options.DashboardPath)])) 155options.DashboardPath = dcpPublisherConfiguration[nameof(options.DashboardPath)];
Aspire.Hosting.Tests (1)
Dcp\DcpCliArgsTests.cs (1)
59Assert.Equal("/not/a/valid/path", dcpOptions.DashboardPath);