Skip to content

Commit f12f834

Browse files
committed
Add additional internal feed syntax
1 parent 90373f2 commit f12f834

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools-local/tasks/Microsoft.DotNet.SourceBuild.Tasks.XPlat/RemoveInternetSourcesFromNuGetConfig.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ public override bool Execute()
5959
}
6060
else
6161
{
62-
return !(feedUrl.StartsWith("https://pkgs.dev.azure.com/dnceng/_packaging", StringComparison.OrdinalIgnoreCase));
62+
return !( feedUrl.StartsWith("https://pkgs.dev.azure.com/dnceng/_packaging", StringComparison.OrdinalIgnoreCase) ||
63+
feedUrl.StartsWith("https://pkgs.dev.azure.com/dnceng/internal/_packaging", StringComparison.OrdinalIgnoreCase) );
6364
}
6465
}
6566

0 commit comments

Comments
 (0)