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