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