12 writes to CliPath
Aspire.Hosting (3)
Dcp\DcpOptions.cs (3)
205
options.
CliPath
= dcpPublisherConfiguration[nameof(options.CliPath)];
214
options.
CliPath
= BundleDiscovery.GetDcpExecutablePath(configDcpPath);
220
options.
CliPath
= GetMetadataValue(assemblyMetadata, DcpCliPathMetadataKey);
Aspire.Hosting.Tests (9)
Dcp\DcpCliArgsTests.cs (1)
130
CliPath
= " ",
Dcp\DcpHostNotificationTests.cs (7)
76
var dcpOptions = Options.Create(new DcpOptions { ContainerRuntime = "docker",
CliPath
= OperatingSystem.IsWindows() ? "cmd.exe" : "/bin/sh" });
173
var dcpOptions = Options.Create(new DcpOptions { ContainerRuntime = "docker",
CliPath
= OperatingSystem.IsWindows() ? "cmd.exe" : "/bin/sh" });
232
var dcpOptions = Options.Create(new DcpOptions { ContainerRuntime = "docker",
CliPath
= OperatingSystem.IsWindows() ? "cmd.exe" : "/bin/sh" });
291
var dcpOptions = Options.Create(new DcpOptions { ContainerRuntime = "podman",
CliPath
= OperatingSystem.IsWindows() ? "cmd.exe" : "/bin/sh" });
345
var dcpOptions = Options.Create(new DcpOptions { ContainerRuntime = "docker",
CliPath
= OperatingSystem.IsWindows() ? "cmd.exe" : "/bin/sh" });
417
var dcpOptions = Options.Create(new DcpOptions { ContainerRuntime = "docker",
CliPath
= OperatingSystem.IsWindows() ? "cmd.exe" : "/bin/sh" });
600
var dcpOptions = new DcpOptions {
CliPath
= dummyPath, DashboardPath = "/dummy/dashboard" };
DistributedApplicationBuilderTests.cs (1)
50
o.
CliPath
= "dcp";
11 references to CliPath
Aspire.Hosting (6)
Dcp\DcpDependencyCheck.cs (1)
44
var dcpPath = _dcpOptions.
CliPath
;
Dcp\DcpHost.cs (1)
297
var dcpExePath = _dcpOptions.
CliPath
;
Dcp\DcpOptions.cs (4)
151
if (executionContext.IsRunMode && string.IsNullOrWhiteSpace(options.
CliPath
))
202
if (!string.IsNullOrWhiteSpace(dcpPublisherConfiguration[nameof(options.
CliPath
)]))
205
options.CliPath = dcpPublisherConfiguration[nameof(options.
CliPath
)];
206
if (Path.GetDirectoryName(options.
CliPath
) is string dcpDir && !string.IsNullOrEmpty(dcpDir))
Aspire.Hosting.Tests (5)
AppHostSmokeTests.cs (1)
32
remoteInvokeOptions.StartInfo.Environment[$"DcpPublisher__CliPath"] = dcpOptions.
CliPath
;
Dcp\DcpCliArgsTests.cs (4)
61
Assert.Equal("/not/a/valid/path", dcpOptions.
CliPath
);
79
Assert.Equal(explicitDcpPath, dcpOptions.
CliPath
);
98
Assert.Equal(BundleDiscovery.GetDcpExecutablePath(bundleDcpPath), dcpOptions.
CliPath
);
117
Assert.Equal(BundleDiscovery.GetDcpExecutablePath(bundleDcpPath), dcpOptions.
CliPath
);