Skip to content

Commit 9bfa766

Browse files
committed
Download ANGLE from the v3 source as v2 is having issues
1 parent 7c0bfd1 commit 9bfa766

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

cake/BuildExternals.cake

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -699,8 +699,9 @@ Task ("externals-angle-uwp")
699699
.WithCriteria (!FileExists (ANGLE_PATH.CombineWithFilePath ("uwp/ANGLE.WindowsStore.nuspec")))
700700
.Does (() =>
701701
{
702-
var version = GetVersion ("ANGLE.WindowsStore", "release");
703-
var angleUrl = $"https://www.nuget.org/api/v2/package/ANGLE.WindowsStore/{version}";
702+
var id = "ANGLE.WindowsStore";
703+
var version = GetVersion (id, "release");
704+
var angleUrl = $"https://api.nuget.org/v3-flatcontainer/{id.ToLower ()}/{version}/{id.ToLower ()}.{version}.nupkg";
704705
var angleRoot = ANGLE_PATH.Combine ("uwp");
705706
var angleNupkg = angleRoot.CombineWithFilePath ($"angle_{version}.nupkg");
706707

0 commit comments

Comments
 (0)