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