7 references to ReferenceParser
Microsoft.NET.Build.Containers (7)
ContainerHelpers.cs (5)
125internal static bool IsValidRegistry(string registryName) => ReferenceParser.AnchoredDomainRegexp.IsMatch(registryName); 135return ReferenceParser.anchoredNameRegexp.IsMatch(imageName); 146return ReferenceParser.anchoredTagRegexp.IsMatch(imageTag); 184var referenceMatch = ReferenceParser.ReferenceRegexp.Match(fullyQualifiedContainerName); 203var nameMatch = ReferenceParser.anchoredNameRegexp.Match(namePortion);
DigestUtils.cs (2)
116Match match = ReferenceParser.AnchoredDigestRegexp.Match(digest); 121$"Digest '{digest}' does not match expected pattern '{ReferenceParser.AnchoredDigestRegexp}'.");