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)
249
if (buildSecret.Value.Type == BuildImageSecretType.
File
)
Publishing\ResourceContainerImageManager.cs (1)
446
var secretType = buildSecret.Value is FileInfo ? BuildImageSecretType.
File
: BuildImageSecretType.Environment;
Aspire.Hosting.Tests (3)
Publishing\ResourceContainerImageManagerTests.cs (3)
889
Assert.Equal(BuildImageSecretType.
File
, fakeContainerRuntime.CapturedBuildSecrets["FILE_SECRET"].Type);
910
["npmrc"] = new BuildImageSecretValue("/path/to/.npmrc", BuildImageSecretType.
File
)
937
["npmrc"] = new BuildImageSecretValue("/app/.npmrc", BuildImageSecretType.
File
)