16 writes to DashboardPath
Aspire.Hosting (3)
Dcp\DcpOptions.cs (3)
180
options.
DashboardPath
= configDashboardPath;
185
options.
DashboardPath
= dcpPublisherConfiguration[nameof(options.DashboardPath)];
190
options.
DashboardPath
= GetMetadataValue(assemblyMetadata, DashboardPathMetadataKey);
Aspire.Hosting.Tests (13)
Dashboard\DashboardResourceTests.cs (3)
39
o.
DashboardPath
= dashboardPath;
246
o.
DashboardPath
= dashboardPath;
542
o.
DashboardPath
= dashboardPath;
Dcp\DcpExecutorTests.cs (9)
66
var dcpOptions = new DcpOptions {
DashboardPath
= "./dashboard", ResourceNameSuffix = "suffix" };
150
var dcpOptions = new DcpOptions {
DashboardPath
= "./dashboard", ResourceNameSuffix = "suffix" };
185
var dcpOptions = new DcpOptions {
DashboardPath
= "./dashboard", ResourceNameSuffix = "suffix" };
228
var dcpOptions = new DcpOptions {
DashboardPath
= "./dashboard", ResourceNameSuffix = "suffix" };
585
var dcpOptions = new DcpOptions {
DashboardPath
= "./dashboard", ResourceNameSuffix = "suffix" };
621
var dcpOptions = new DcpOptions {
DashboardPath
= "./dashboard" };
725
var dcpOptions = new DcpOptions {
DashboardPath
= "./dashboard" };
805
var dcpOptions = new DcpOptions {
DashboardPath
= "./dashboard" };
2325
dcpOptions ??= new DcpOptions {
DashboardPath
= "./dashboard" };
DistributedApplicationBuilderTests.cs (1)
36
o.
DashboardPath
= "dashboard";
6 references to DashboardPath
Aspire.Hosting (4)
Dashboard\DashboardOptions.cs (1)
29
options.DashboardPath = dcpOptions.Value.
DashboardPath
;
Dcp\DcpOptions.cs (3)
126
if (string.IsNullOrEmpty(options.
DashboardPath
))
182
else if (!string.IsNullOrEmpty(dcpPublisherConfiguration[nameof(options.
DashboardPath
)]))
185
options.DashboardPath = dcpPublisherConfiguration[nameof(options.
DashboardPath
)];
Aspire.Hosting.Tests (2)
AppHostSmokeTests.cs (1)
33
remoteInvokeOptions.StartInfo.Environment[$"DcpPublisher__DashboardPath"] = dcpOptions.
DashboardPath
;
Dcp\DcpCliArgsTests.cs (1)
60
Assert.Equal("/not/a/valid/path", dcpOptions.
DashboardPath
);