4 instantiations of Registry
Microsoft.NET.Build.Containers (4)
ContainerBuilder.cs (1)
57
Registry? sourceRegistry = isLocalPull ? null : new
Registry
(baseRegistry, logger, sourceRegistryMode);
DestinationImageReference.cs (1)
79
new
Registry
(outputRegistry, loggerFactory.CreateLogger<Registry>(), RegistryMode.Push),
Tasks\CreateImageIndex.cs (1)
60
Registry? sourceRegistry = IsLocalPull ? null : new
Registry
(BaseRegistry, logger, sourceRegistryMode);
Tasks\CreateNewImage.cs (1)
84
Registry? sourceRegistry = IsLocalPull ? null : new
Registry
(BaseRegistry, logger, sourceRegistryMode);
11 references to Registry
Microsoft.NET.Build.Containers (11)
Constants.cs (1)
10
public static readonly string Version = typeof(
Registry
).Assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>()?.InformationalVersion ?? "";
ContainerBuilder.cs (1)
57
Registry
? sourceRegistry = isLocalPull ? null : new Registry(baseRegistry, logger, sourceRegistryMode);
DestinationImageReference.cs (4)
27
public
Registry
? RemoteRegistry { get; }
39
public DestinationImageReference(
Registry
remoteRegistry, string repository, string[] tags)
79
new Registry(outputRegistry, loggerFactory.CreateLogger<
Registry
>(), RegistryMode.Push),
104
string[] GenerateRegistryNames(
Registry
registry, string repository, string[] tags)
Registry\Registry.cs (1)
580
Registry
destinationRegistry = destination.RemoteRegistry!;
SourceImageReference.cs (1)
9
internal readonly record struct SourceImageReference(
Registry
? Registry, string Repository, string? Tag, string? Digest)
Tasks\CreateImageIndex.cs (1)
60
Registry
? sourceRegistry = IsLocalPull ? null : new Registry(BaseRegistry, logger, sourceRegistryMode);
Tasks\CreateNewImage.cs (1)
84
Registry
? sourceRegistry = IsLocalPull ? null : new Registry(BaseRegistry, logger, sourceRegistryMode);
Telemetry.cs (1)
38
private RegistryType GetRegistryType(
Registry
r)