18 instantiations of AkaMSLink
Microsoft.DotNet.Build.Tasks.Feed (1)
src\common\LatestLinksManager.cs (1)
120AkaMSLink newLink = new AkaMSLink(GetLatestShortUrlForBlob(shortUrlPrefix, asset, flatten), actualTargetUrl);
Microsoft.DotNet.Build.Tasks.Feed.Tests (16)
LatestLinksManagerTests.cs (16)
114new AkaMSLink("prefix1/Microsoft.stuff.zip", "https://example.com/feed/assets/Microsoft.stuff.zip"), 115new AkaMSLink("prefix2/Microsoft.stuff.zip", "https://example.com/feed/assets/Microsoft.stuff.zip"), 116new AkaMSLink("prefix1/Microsoft.stuff.zip.sha512", "https://example.com/feed/assets/Microsoft.stuff.zip.sha512"), 117new AkaMSLink("prefix2/Microsoft.stuff.zip.sha512", "https://example.com/feed/assets/Microsoft.stuff.zip.sha512") 181new AkaMSLink("prefix1/Microsoft.stuff.zip", "https://example.com/feed/assets/Microsoft.stuff.zip"), 182new AkaMSLink("prefix2/Microsoft.stuff.zip", "https://example.com/feed/assets/Microsoft.stuff.zip"), 183new AkaMSLink("prefix1/Microsoft.stuff.json.zip", "https://example.com/feed/assets/Microsoft.stuff.json.zip"), 184new AkaMSLink("prefix2/Microsoft.stuff.json.zip", "https://example.com/feed/assets/Microsoft.stuff.json.zip") 218new AkaMSLink("prefix1/bar/Microsoft.stuff.zip", "https://example.com/feed/bar/Microsoft.stuff.zip"), 219new AkaMSLink("prefix2/bar/Microsoft.stuff.zip", "https://example.com/feed/bar/Microsoft.stuff.zip"), 220new AkaMSLink("prefix1/assets/plop/Microsoft.stuff.json.zip", "https://example.com/feed/assets/plop/Microsoft.stuff.json.zip"), 221new AkaMSLink("prefix2/assets/plop/Microsoft.stuff.json.zip", "https://example.com/feed/assets/plop/Microsoft.stuff.json.zip") 260new AkaMSLink("dotnet/9/aspire/rc/daily/get-aspire-cli.ps1", "https://example.com/feed/assets/installers/get-aspire-cli.ps1"), 261new AkaMSLink("dotnet/9/aspire/rc/daily/get-aspire-cli.ps1.sha512", "https://example.com/feed/assets/installers/get-aspire-cli.ps1.sha512"), 262new AkaMSLink("dotnet/9/aspire/rc/daily/get-aspire-cli.sh", "https://example.com/feed/assets/installers/get-aspire-cli.sh"), 263new AkaMSLink("dotnet/9/aspire/rc/daily/get-aspire-cli.sh.sha512", "https://example.com/feed/assets/installers/get-aspire-cli.sh.sha512"),
Microsoft.DotNet.Deployment.Tasks.Links (1)
31 references to AkaMSLink
Microsoft.DotNet.Build.Tasks.Feed (7)
src\common\LatestLinksManager.cs (7)
56IEnumerable<AkaMSLink> linksToCreate = GetLatestLinksToCreate(assetsToPublish, feedConfig, feedBaseUrl); 66public IEnumerable<AkaMSLink> GetLatestLinksToCreate(HashSet<string> assetsToPublish, TargetFeedConfig feedConfig, string feedBaseUrl) 68IEnumerable<AkaMSLink> linksToCreate = assetsToPublish 77List<AkaMSLink> newLinks = new List<AkaMSLink>(); 115public AkaMSLink GetAkaMSLinkForAsset(string shortUrlPrefix, string feedBaseUrl, string asset, bool flatten) 120AkaMSLink newLink = new AkaMSLink(GetLatestShortUrlForBlob(shortUrlPrefix, asset, flatten), actualTargetUrl);
Microsoft.DotNet.Build.Tasks.Feed.Tests (4)
LatestLinksManagerTests.cs (4)
112links.Should().BeEquivalentTo(new List<AkaMSLink> 179links.Should().BeEquivalentTo(new List<AkaMSLink> 216links.Should().BeEquivalentTo(new List<AkaMSLink> 258links.Should().BeEquivalentTo(new List<AkaMSLink>
Microsoft.DotNet.Deployment.Tasks.Links (20)