1 write to BaseRegistry
Microsoft.NET.Build.Containers (1)
Tasks\CreateImageIndex.Interface.cs (1)
83BaseRegistry = string.Empty;
3 references to BaseRegistry
Microsoft.NET.Build.Containers (3)
Tasks\CreateImageIndex.cs (3)
26private bool IsLocalPull => string.IsNullOrWhiteSpace(BaseRegistry); 59RegistryMode sourceRegistryMode = BaseRegistry.Equals(OutputRegistry, StringComparison.InvariantCultureIgnoreCase) ? RegistryMode.PullFromOutput : RegistryMode.Pull; 60Registry? sourceRegistry = IsLocalPull ? null : new Registry(BaseRegistry, logger, sourceRegistryMode);