Skip to content

Commit acb7df6

Browse files
nagilsonbaronfel
andauthored
Fix Containers Issue in 8.0.1xx
Co-authored-by: Chet Husk <baronfel@users.noreply.github.com>
1 parent 4c71772 commit acb7df6

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryManager.cs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,6 @@ public class DockerRegistryManager
2626
// TODO: some logic to pivot between this and Docker Hub
2727
private static string RegistryImageToUse => SDK_AzureContainerRegistryImage;
2828

29-
internal class SameArchManifestPicker : IManifestPicker
30-
{
31-
public PlatformSpecificManifest? PickBestManifestForRid(IReadOnlyDictionary<string, PlatformSpecificManifest> manifestList, string runtimeIdentifier)
32-
{
33-
return manifestList.Values.SingleOrDefault(m => m.platform.os == "linux" && m.platform.architecture == "amd64");
34-
}
35-
36-
public PlatformSpecificOciManifest? PickBestManifestForRid(IReadOnlyDictionary<string, PlatformSpecificOciManifest> manifestList, string runtimeIdentifier)
37-
{
38-
return manifestList.Values.SingleOrDefault(m => m.platform.os == "linux" && m.platform.architecture == "amd64");
39-
}
40-
}
4129

4230
public static async Task StartAndPopulateDockerRegistry(ITestOutputHelper testOutput)
4331
{

0 commit comments

Comments
 (0)