7 references to ReferenceParser
Microsoft.NET.Build.Containers (7)
ContainerHelpers.cs (5)
132internal static bool IsValidRegistry(string registryName) => ReferenceParser.AnchoredDomainRegexp.IsMatch(registryName); 142return ReferenceParser.anchoredNameRegexp.IsMatch(imageName); 153return ReferenceParser.anchoredTagRegexp.IsMatch(imageTag); 221var referenceMatch = ReferenceParser.ReferenceRegexp.Match(fullyQualifiedContainerName); 240var nameMatch = ReferenceParser.anchoredNameRegexp.Match(namePortion);
DigestUtils.cs (2)
138Match match = ReferenceParser.AnchoredDigestRegexp.Match(digest); 143$"Digest '{digest}' does not match expected pattern '{ReferenceParser.AnchoredDigestRegexp}'.");