2 writes to ImageTags
Microsoft.NET.Build.Containers (1)
Tasks\CreateNewImage.Interface.cs (1)
210ImageTags = Array.Empty<string>();
Microsoft.NET.Build.Containers.IntegrationTests (1)
FullFramework\CreateNewImageToolTaskTests.cs (1)
455task.ImageTags = new[] { "", " ", "Valid1", "To be quoted" };
3 references to ImageTags
Microsoft.NET.Build.Containers (3)
Tasks\CreateNewImageToolTask.cs (3)
171if (ImageTags.Any(string.IsNullOrWhiteSpace)) 173Log.LogWarningWithCodeFromResources(nameof(Strings.EmptyOrWhitespacePropertyIgnored), nameof(ImageTags)); 175string[] sanitizedImageTags = ImageTags.Where(i => !string.IsNullOrWhiteSpace(i)).ToArray();