6 references to File
Aspire.Hosting (3)
Publishing\BuildImageSecretValue.cs (1)
29
/// For <see cref="BuildImageSecretType.
File
"/> secrets, this is the file path.</param>
Publishing\ContainerRuntimeBase.cs (1)
479
if (buildSecret.Value.Type == BuildImageSecretType.
File
)
Publishing\ResourceContainerImageManager.cs (1)
474
var secretType = buildSecret.Value is FileInfo ? BuildImageSecretType.
File
: BuildImageSecretType.Environment;
Aspire.Hosting.Tests (3)
Publishing\ResourceContainerImageManagerTests.cs (3)
985
Assert.Equal(BuildImageSecretType.
File
, fakeContainerRuntime.CapturedBuildSecrets["FILE_SECRET"].Type);
1006
["npmrc"] = new BuildImageSecretValue("/path/to/.npmrc", BuildImageSecretType.
File
)
1033
["npmrc"] = new BuildImageSecretValue("/app/.npmrc", BuildImageSecretType.
File
)