10 references to RegistryType
Microsoft.NET.Build.Containers (10)
Telemetry.cs (10)
18
private record class PublishTelemetryContext(
RegistryType
? RemotePullType, LocalStorageType? LocalPullType,
RegistryType
? RemotePushType, LocalStorageType? LocalPushType);
38
private
RegistryType
GetRegistryType(Registry r)
40
if (r.IsMcr) return
RegistryType
.MCR;
41
if (r.IsGithubPackageRegistry) return
RegistryType
.GitHub;
42
if (r.IsAmazonECRRegistry) return
RegistryType
.AWS;
43
if (r.IsAzureContainerRegistry) return
RegistryType
.Azure;
44
if (r.IsGoogleArtifactRegistry) return
RegistryType
.Google;
45
if (r.IsDockerHub) return
RegistryType
.DockerHub;
46
return
RegistryType
.Other;