6 references to PullFromOutput
Microsoft.NET.Build.Containers (4)
AuthHandshakeMessageHandler.cs (1)
235else if (mode == RegistryMode.PullFromOutput)
ContainerBuilder.cs (1)
56RegistryMode sourceRegistryMode = baseRegistry.Equals(outputRegistry, StringComparison.InvariantCultureIgnoreCase) ? RegistryMode.PullFromOutput : RegistryMode.Pull;
Tasks\CreateImageIndex.cs (1)
59RegistryMode sourceRegistryMode = BaseRegistry.Equals(OutputRegistry, StringComparison.InvariantCultureIgnoreCase) ? RegistryMode.PullFromOutput : RegistryMode.Pull;
Tasks\CreateNewImage.cs (1)
61RegistryMode sourceRegistryMode = BaseRegistry.Equals(OutputRegistry, StringComparison.InvariantCultureIgnoreCase) ? RegistryMode.PullFromOutput : RegistryMode.Pull;
Microsoft.NET.Build.Containers.UnitTests (2)
AuthHandshakeMessageHandlerTests.cs (2)
22[InlineData("DOTNET_CONTAINER_PULL_REGISTRY_UNAME", "DOTNET_CONTAINER_PULL_REGISTRY_PWORD", (int)RegistryMode.PullFromOutput)] 23[InlineData("SDK_CONTAINER_REGISTRY_UNAME", "SDK_CONTAINER_REGISTRY_PWORD", (int)RegistryMode.PullFromOutput)]