-
Notifications
You must be signed in to change notification settings - Fork 25
/
cli-feed-v3-2.json
3699 lines (3699 loc) · 181 KB
/
cli-feed-v3-2.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"tags": {
"v1": {
"release": "1.10.2",
"displayName": "Azure Functions v1 (.NET Framework)",
"displayVersion": "v1",
"releaseQuality": "GA",
"targetFramework": ".NET Framework",
"hidden": false
},
"v1-prerelease": {
"release": "1.10.2",
"displayName": "Azure Functions v1 Prerelease (.NET Framework)",
"displayVersion": "v1",
"releaseQuality": "Prerelease",
"targetFramework": ".NET Framework",
"hidden": true
},
"v2": {
"release": "2.60.1",
"displayName": "Azure Functions v2 (.NET Core)",
"displayVersion": "v2",
"releaseQuality": "GA",
"targetFramework": ".NET Core",
"hidden": false
},
"v2-prerelease": {
"release": "2.60.2",
"displayName": "Azure Functions v2 Prerelease (.NET Core)",
"displayVersion": "v2",
"releaseQuality": "Prerelease",
"targetFramework": ".NET Core",
"hidden": true
},
"v2-preview": {
"release": "2.60.2",
"displayName": "Azure Functions v2 Preview (.NET Core)",
"displayVersion": "v2",
"releaseQuality": "Preview",
"targetFramework": ".NET Core",
"hidden": true
}
},
"releases": {
"1.0.7": {
"Microsoft.NET.Sdk.Functions": "1.0.7",
"cli": "https://functionscdn.azureedge.net/public/1.0.7/Azure.Functions.Cli.zip",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/1.0.3.10152",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/1.0.3.10152",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/1.0.3.10152.zip",
"sha2": "14BE7C4E335D92D3F0671C1A6232ECD72FA7437D22BA3AF06B6A6EE8E2B0E962",
"FUNCTIONS_EXTENSION_VERSION": "~1"
},
"2.0.1-beta.22": {
"Microsoft.NET.Sdk.Functions": "1.0.7",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.22/Azure.Functions.Cli.zip",
"localEntryPoint": "func.dll",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-beta-10153",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-beta-10153",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-beta-10153.zip",
"sha2": "E47223BC3CAFD36677A2F4849D6216C70E4719AB30269AB1A185B590DF049BAB",
"FUNCTIONS_EXTENSION_VERSION": "beta"
},
"1.0.10": {
"Microsoft.NET.Sdk.Functions": "1.0.13",
"cli": "https://functionscdn.azureedge.net/public/1.0.10/Azure.Functions.Cli.zip",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/1.0.3.10178",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/1.0.3.10178",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/1.0.3.10178.zip",
"sha2": "B5500864FE48BF27F0AD161AB29A0D5415141C0169AD6CF1D120C1A8EB563F63",
"FUNCTIONS_EXTENSION_VERSION": "~1"
},
"2.0.1-beta.25": {
"Microsoft.NET.Sdk.Functions": "1.0.13",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.25/Azure.Functions.Cli.no-runtime.2.0.1-beta.25.zip",
"localEntryPoint": "func.dll",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-beta-10177",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-beta-10177",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-beta-10177.zip",
"sha2": "85E3B95F33B5A48C8D60C77B5E0A84862048D188F1562D8E16893635C5B91A85",
"FUNCTIONS_EXTENSION_VERSION": "beta"
},
"2.0.1-beta.26": {
"Microsoft.NET.Sdk.Functions": "1.0.13",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.25/Azure.Functions.Cli.no-runtime.2.0.1-beta.25.zip",
"localEntryPoint": "func.dll",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-beta-10177",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-beta-10177",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-beta-10183.zip",
"sha2": "85E3B95F33B5A48C8D60C77B5E0A84862048D188F1562D8E16893635C5B91A85",
"FUNCTIONS_EXTENSION_VERSION": "beta"
},
"2.0.1-beta.27": {
"Microsoft.NET.Sdk.Functions": "1.0.13",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.25/Azure.Functions.Cli.no-runtime.2.0.1-beta.25.zip",
"localEntryPoint": "func.dll",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-beta-10185",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-beta-10185",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-beta-10183.zip",
"sha2": "85E3B95F33B5A48C8D60C77B5E0A84862048D188F1562D8E16893635C5B91A85",
"FUNCTIONS_EXTENSION_VERSION": "beta"
},
"2.1.0": {
"Microsoft.NET.Sdk.Functions": "1.0.13",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.26/Azure.Functions.Cli.no-runtime.2.0.1-beta.26.zip",
"localEntryPoint": "func.dll",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-beta-10185",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-beta-10185",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-beta-10183.zip",
"sha2": "A148DC9C2783D2E7E5E50F59BE2EAEA7948213A30876F41171CF20E9F84754F2",
"FUNCTIONS_EXTENSION_VERSION": "beta"
},
"2.2.0": {
"Microsoft.NET.Sdk.Functions": "1.0.13",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.30/Azure.Functions.Cli.win-x86.2.0.1-beta.30.zip",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-beta-10202",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-beta-10202",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-beta-10183.zip",
"sha2": "DC1D0F2D2B5817E27B78CF5109EA086F865D76867ADD3FD510287CA92754FFE8",
"FUNCTIONS_EXTENSION_VERSION": "beta"
},
"2.2.1": {
"Microsoft.NET.Sdk.Functions": "1.0.13",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.30/Azure.Functions.Cli.win-x86.2.0.1-beta.30.zip",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-beta-10205",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-beta-10205",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-beta-10205.zip",
"sha2": "DC1D0F2D2B5817E27B78CF5109EA086F865D76867ADD3FD510287CA92754FFE8",
"FUNCTIONS_EXTENSION_VERSION": "beta"
},
"2.2.2": {
"Microsoft.NET.Sdk.Functions": "1.0.14",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.31/Azure.Functions.Cli.win-x86.2.0.1-beta.31.zip",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-beta-10210",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-beta-10210",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-beta-10205.zip",
"sha2": "CBD132DAB8827115A2659DE9B486E9BDEEBB8B5C29ABE39875F83444B55BD617",
"FUNCTIONS_EXTENSION_VERSION": "beta"
},
"2.3.0": {
"Microsoft.NET.Sdk.Functions": "1.0.14",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.32/Azure.Functions.Cli.win-x86.2.0.1-beta.32.zip",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-beta-10210",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-beta-10210",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-beta-10205.zip",
"sha2": "20EBA1FA9728A2F451BC3CDC6B5A96B6F8C404B9C7F00DC161BD906EE1B32BFA",
"FUNCTIONS_EXTENSION_VERSION": "beta"
},
"2.3.1": {
"Microsoft.NET.Sdk.Functions": "1.0.14",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.32/Azure.Functions.Cli.win-x86.2.0.1-beta.32.zip",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-beta-10210",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-beta-10210",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-beta-10205.zip",
"sha2": "FE046167D756F020D3B727106FD74C8A47E15D22EF1A05B1671A98DB03D074C4",
"FUNCTIONS_EXTENSION_VERSION": "beta"
},
"2.3.2": {
"Microsoft.NET.Sdk.Functions": "1.0.14",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.33/Azure.Functions.Cli.win-x86.2.0.1-beta.33.zip",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-beta-10210",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-beta-10210",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-beta-10205.zip",
"sha2": "DEB64C4E7E4E9132F19A090A0F4FC05B8CEF930637B7351A8182AC0AECD809F7",
"FUNCTIONS_EXTENSION_VERSION": "beta",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1"
},
"2.3.3": {
"Microsoft.NET.Sdk.Functions": "1.0.14",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.34/Azure.Functions.Cli.win-x86.2.0.1-beta.34.zip",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-beta-10224",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-beta-10224",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-beta-10224.zip",
"sha2": "4A2B808E86AE4C4DEF38A2A14270D19EC384648AD1FDF635921A64F609D41098",
"FUNCTIONS_EXTENSION_VERSION": "beta",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1"
},
"2.4.0": {
"Microsoft.NET.Sdk.Functions": "1.0.14",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.35/Azure.Functions.Cli.win-x86.2.0.1-beta.35.zip",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-beta-10224",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-beta-10224",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-beta-10224.zip",
"sha2": "1B9047E218F58E9C377D6225774A608CAA62C168BBE9C472953FA6B06A15FD88",
"FUNCTIONS_EXTENSION_VERSION": "beta",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1"
},
"2.5.0": {
"Microsoft.NET.Sdk.Functions": "1.0.19",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.36/Azure.Functions.Cli.win-x86.2.0.1-beta.36.zip",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-beta-10233",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-beta-10233",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-beta-10233.zip",
"sha2": "16D7EB2FD65D7AA9E78C99B1CA5DA7D6C2B23EA029B6AE06D9FE4B313C5E8E4B",
"FUNCTIONS_EXTENSION_VERSION": "beta",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1"
},
"2.5.1": {
"Microsoft.NET.Sdk.Functions": "1.0.19",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.36/Azure.Functions.Cli.win-x86.2.0.1-beta.36.zip",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-beta-10235",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-beta-10235",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-beta-10233.zip",
"sha2": "16D7EB2FD65D7AA9E78C99B1CA5DA7D6C2B23EA029B6AE06D9FE4B313C5E8E4B",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1"
},
"2.5.2": {
"Microsoft.NET.Sdk.Functions": "1.0.19",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.38/Azure.Functions.Cli.win-x86.2.0.1-beta.38.zip",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-beta-10235",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-beta-10235",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-beta-10233.zip",
"sha2": "F6261FAF4074904E43FC7959F3866D265D2910A3E2AB9990A6E3AE1626777222",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1"
},
"2.6.0": {
"Microsoft.NET.Sdk.Functions": "1.0.21",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.39/Azure.Functions.Cli.win-x86.2.0.1-beta.39.zip",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-rc1-10259",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-rc1-10259",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-rc1-10259.zip",
"sha2": "9DE232A7692E9CC1B0E21E9A81E62B9D5658F134C871C306085D7B5CE3DBD716",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1"
},
"2.7.0": {
"Microsoft.NET.Sdk.Functions": "1.0.22",
"cli": "https://functionscdn.azureedge.net/public/2.0.1-beta.40/Azure.Functions.Cli.win-x86.2.0.1-beta.40.zip",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-10262",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-10262",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-10262.zip",
"sha2": "0D187801E6A22DB88687CB175510DD5570B135C8515AE254D2C4564C1A2A90E4",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1"
},
"2.8.0": {
"Microsoft.NET.Sdk.Functions": "1.0.22",
"cli": "https://functionscdn.azureedge.net/public/2.0.2/Azure.Functions.Cli.win-x86.2.0.2.zip",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-10262",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-10262",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-10262.zip",
"sha2": "0D187801E6A22DB88687CB175510DD5570B135C8515AE254D2C4564C1A2A90E4",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1"
},
"2.8.1": {
"Microsoft.NET.Sdk.Functions": "1.0.22",
"cli": "https://functionscdn.azureedge.net/public/2.0.3/Azure.Functions.Cli.win-x86.2.0.3.zip",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-10262",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-10262",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-10262.zip",
"sha2": "9B75D9D4B703F5109193EAE1AA90CEEA0875B7E7CCF0CECFE31B0EE2D03DFCDC",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1"
},
"2.9.0": {
"Microsoft.NET.Sdk.Functions": "1.0.22",
"cli": "https://functionscdn.azureedge.net/public/2.1.725/Azure.Functions.Cli.win-x86.2.1.725.zip",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-10288",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-10288",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-10288.zip",
"sha2": "64F04D0D0EE423A6A14BE2B691B5121AD809109A908EDAB4A2FCB6B7F6A80E0D",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OperatingSystem": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.1.725/Azure.Functions.Cli.osx-x64.2.1.725.zip",
"sha2": "ECF2A0256FEA8F22467183A78DC182165AC7EFEAD0DA89F611118727947C2416"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.1.725/Azure.Functions.Cli.win-x64.2.1.725.zip",
"sha2": "F0BCE001F34E752EE7301C2A98E4020F6E81FAA73488DFE5A31D64DFF1A613A4"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.1.725/Azure.Functions.Cli.win-x86.2.1.725.zip",
"sha2": "64F04D0D0EE423A6A14BE2B691B5121AD809109A908EDAB4A2FCB6B7F6A80E0D"
},
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.1.725/Azure.Functions.Cli.linux-x64.2.1.725.zip",
"sha2": "CE066067975FF67698F6D7A46E5D294FBAAD2348B821C3B39AF9E7CD278E7961"
}
]
},
"2.10.0": {
"Microsoft.NET.Sdk.Functions": "1.0.22",
"cli": "https://functionscdn.azureedge.net/public/2.1.746/Azure.Functions.Cli.win-x86.2.1.746.zip",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-10288",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-10288",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-10288.zip",
"sha2": "6EA85D770E6F33999F8645E581F7BDF66A3A3DF9C2A7EDFE7448EEDC3700FD43",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OperatingSystem": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.1.746/Azure.Functions.Cli.osx-x64.2.1.746.zip",
"sha2": "A92C7C6C0A733177B171D054A162985E4FBF6A55CB607FC265A4482818C18AAB"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.1.746/Azure.Functions.Cli.win-x64.2.1.746.zip",
"sha2": "F2B08A068AE20AB11ED1AFFB3DB44534F119A1B6D9EF499CC1379A76D0897E4E"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.1.746/Azure.Functions.Cli.win-x86.2.1.746.zip",
"sha2": "6EA85D770E6F33999F8645E581F7BDF66A3A3DF9C2A7EDFE7448EEDC3700FD43"
},
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.1.746/Azure.Functions.Cli.linux-x64.2.1.746.zip",
"sha2": "FD9F3256477092467CD1D2B50831748C59C9061ABAF3571418043D17B098D3C5"
}
]
},
"2.10.1": {
"Microsoft.NET.Sdk.Functions": "1.0.23",
"cli": "https://functionscdn.azureedge.net/public/2.1.748/Azure.Functions.Cli.win-x86.2.1.748.zip",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-10300",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-10300",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-10288.zip",
"sha2": "F24A9AF1C26F4682DD8D392DB162571BF247A25B0BDF35C346BBF51B2907E50D",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OperatingSystem": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.1.748/Azure.Functions.Cli.osx-x64.2.1.748.zip",
"sha2": "15CAB5CD5944F054D9D08E82E63A9D2C60853612FF727ECFFC027ECCF6A99026"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.1.748/Azure.Functions.Cli.win-x64.2.1.748.zip",
"sha2": "F2B08A068AE20AB11ED1AFFB3DB44534F119A1B6D9EF499CC1379A76D0897E4E"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.1.748/Azure.Functions.Cli.win-x86.2.1.748.zip",
"sha2": "F24A9AF1C26F4682DD8D392DB162571BF247A25B0BDF35C346BBF51B2907E50D"
},
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.1.748/Azure.Functions.Cli.linux-x64.2.1.748.zip",
"sha2": "2ACA6BED1917AB284AFAFFA5764030019C3FB0B1D743C9FA43866123FF5EA1E7"
}
]
},
"2.11.0": {
"Microsoft.NET.Sdk.Functions": "1.0.23",
"cli": "https://functionscdn.azureedge.net/public/2.2.1/Azure.Functions.Cli.win-x86.2.2.1.zip",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-10300",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-10300",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-10288.zip",
"sha2": "DB1A6D8A20E600D57824F03EC1431D2169C26A952D6BE2FC815EAC35CEC4EE0D",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OperatingSystem": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.2.1/Azure.Functions.Cli.osx-x64.2.2.1.zip",
"sha2": "809C744FE60D0902473F2F3810BE98AB8FE979F1CF38AFF2FCABD691FAD96CF2"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.2.1/Azure.Functions.Cli.win-x64.2.2.1.zip",
"sha2": "E4079BD83D839781D597568FE830013B51E2035195794A90FCB822CA40E2314E"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.2.1/Azure.Functions.Cli.win-x86.2.2.1.zip",
"sha2": "DB1A6D8A20E600D57824F03EC1431D2169C26A952D6BE2FC815EAC35CEC4EE0D"
},
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.2.1/Azure.Functions.Cli.linux-x64.2.2.1.zip",
"sha2": "B1B54D53E2E8627419EBC0FAEF6BD4A29EF39261587668D411D307A13612C8B5"
}
]
},
"2.11.1": {
"Microsoft.NET.Sdk.Functions": "1.0.23",
"cli": "https://functionscdn.azureedge.net/public/2.2.32/Azure.Functions.Cli.win-x86.2.2.32.zip",
"sha2": "227D26DC072FC6670F6D3123B1EE7F6E4F78699A8914675557A07C18066CEC09",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-10310",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-10310",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-10310.zip",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.2.32/Azure.Functions.Cli.linux-x64.2.2.32.zip",
"sha2": "32CAC128883EDE1A52E4DC93732E470E86F213CADD1A9BA9418D3ABB915A4C0E"
},
{
"OperatingSystem": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.2.32/Azure.Functions.Cli.osx-x64.2.2.32.zip",
"sha2": "2EC8FC55155680CAC53F674AF4D0F3E70BA42464C16EACFCD8EB63B78CC4C283"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.2.32/Azure.Functions.Cli.win-x64.2.2.32.zip",
"sha2": "C22A7C0FEC52BA30D1DB1FEAC16872098DCD4202596DBF607DC23F28DDF9E287"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.2.32/Azure.Functions.Cli.win-x86.2.2.32.zip",
"sha2": "227D26DC072FC6670F6D3123B1EE7F6E4F78699A8914675557A07C18066CEC09"
}
]
},
"2.11.2": {
"Microsoft.NET.Sdk.Functions": "1.0.24",
"cli": "https://functionscdn.azureedge.net/public/2.2.46/Azure.Functions.Cli.win-x86.2.2.46.zip",
"sha2": "13512D8CE0D676294F1DA1D8F514D7F4902DC52C3FF95E09DF65147546CD1348",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Azure.Functions.Templates/2.0.0-10311",
"projectTemplates": "https://www.myget.org/F/azure-appservice/api/v2/package/Microsoft.AzureFunctions.ProjectTemplates/2.0.0-10311",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.0-10310.zip",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.2.46/Azure.Functions.Cli.linux-x64.2.2.46.zip",
"sha2": "0B005C6D3EB8AAB4FAEA9AE2F00874214C45489AF1568DE8EBB04A23D3890310"
},
{
"OperatingSystem": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.2.46/Azure.Functions.Cli.osx-x64.2.2.46.zip",
"sha2": "989E02ABC58F1F3F5EA2B5C0F7C2BA11173B971537CCB3FB0D20F8877E58435B"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.2.46/Azure.Functions.Cli.win-x64.2.2.46.zip",
"sha2": "34B8074D7E343D7F7E444D8A186863413388337E3061276CD8CF8F955E9E4498"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.2.46/Azure.Functions.Cli.win-x86.2.2.46.zip",
"sha2": "13512D8CE0D676294F1DA1D8F514D7F4902DC52C3FF95E09DF65147546CD1348"
}
]
},
"2.11.3": {
"Microsoft.NET.Sdk.Functions": "1.0.24",
"cli": "https://functionscdn.azureedge.net/public/2.2.46/Azure.Functions.Cli.min.win-x86.2.2.46.zip",
"sha2": "39BCCC432EF4D09303600117F03E8FC985051B01A35EB31E0A9BE23BD8D785D9",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ItemTemplates/2.0.10321",
"projectTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ProjectTemplates/2.0.10321",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.10321.zip",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.2.46/Azure.Functions.Cli.linux-x64.2.2.46.zip",
"sha2": "0B005C6D3EB8AAB4FAEA9AE2F00874214C45489AF1568DE8EBB04A23D3890310"
},
{
"OperatingSystem": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.2.46/Azure.Functions.Cli.osx-x64.2.2.46.zip",
"sha2": "989E02ABC58F1F3F5EA2B5C0F7C2BA11173B971537CCB3FB0D20F8877E58435B"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.2.46/Azure.Functions.Cli.win-x64.2.2.46.zip",
"sha2": "34B8074D7E343D7F7E444D8A186863413388337E3061276CD8CF8F955E9E4498"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.2.46/Azure.Functions.Cli.win-x86.2.2.46.zip",
"sha2": "13512D8CE0D676294F1DA1D8F514D7F4902DC52C3FF95E09DF65147546CD1348"
}
]
},
"2.12.0": {
"Microsoft.NET.Sdk.Functions": "1.0.24",
"cli": "https://functionscdn.azureedge.net/public/2.3.111/Azure.Functions.Cli.min.win-x86.2.3.111.zip",
"sha2": "C0FD7C3E4DA1A9CCD251FE5296EFE3C06C8A67F40D41A3C77FB549E8DFE64CC7",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ItemTemplates/2.0.10321",
"projectTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ProjectTemplates/2.0.10321",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.10321.zip",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.3.111/Azure.Functions.Cli.linux-x64.2.3.111.zip",
"sha2": "A634B9862C26BBC4EDE7B74D787F0AAC68BC9F19D9D8C0FBC9AC2BA0ADD2AAA6"
},
{
"OperatingSystem": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.3.111/Azure.Functions.Cli.osx-x64.2.3.111.zip",
"sha2": "9998DB087D556F02F22B4D82F0A6379546B8A72B987838AD802A3CF09CDA776C"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.3.111/Azure.Functions.Cli.win-x64.2.3.111.zip",
"sha2": "30F7CA6043235364D6D9DB967BBF81B2A99508D02D91B0F4DF86513A5B6EA099"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.3.111/Azure.Functions.Cli.win-x86.2.3.111.zip",
"sha2": "43C295FCB09713D92121695393800FAD34E904BC7089C98411D1D81AB600283D"
}
]
},
"2.13.0": {
"Microsoft.NET.Sdk.Functions": "1.0.24",
"cli": "https://functionscdn.azureedge.net/public/2.3.131/Azure.Functions.Cli.min.win-x86.2.3.131.zip",
"sha2": "E84B8EF0998FA19A04B16AE3690663EBAB757E583D2D58F85B83C04ACBE7BE7E",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ItemTemplates/2.0.10321",
"projectTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ProjectTemplates/2.0.10321",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.10321.zip",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.3.131/Azure.Functions.Cli.linux-x64.2.3.131.zip",
"sha2": "2BC28BC8A3416A961CE21E78EAFB3696ED188B55C9A10AB0F77D1F2C9B6CC809"
},
{
"OperatingSystem": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.3.131/Azure.Functions.Cli.osx-x64.2.3.131.zip",
"sha2": "063524BF6BEB3D08931F2647D695CCC054E28B2C4212CACB7BCD59CEAFFD9BFD"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.3.131/Azure.Functions.Cli.win-x64.2.3.131.zip",
"sha2": "C7E1BAC22A85047277D18D065EC37AED8F05D9D3F14DFCA653D3FB6BD106FDA8"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.3.131/Azure.Functions.Cli.win-x86.2.3.131.zip",
"sha2": "AF46C6611B693E8B6B762C66DA8A97C90AE4D19E64191CFFECDE9579272324C5"
}
]
},
"2.14.0": {
"Microsoft.NET.Sdk.Functions": "1.0.24",
"cli": "https://functionscdn.azureedge.net/public/2.3.148/Azure.Functions.Cli.min.win-x86.2.3.148.zip",
"sha2": "4E7810B5B67DB79D1D8AA32F2DC722A42C3C11BDD33CFF1C8B1B0A705585115A",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ItemTemplates/2.0.10321",
"projectTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ProjectTemplates/2.0.10321",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.10321.zip",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.3.148/Azure.Functions.Cli.linux-x64.2.3.148.zip",
"sha2": "E08BCBE722212702D0E30EF6BFB7EDFD96D46934822B13D310CA11DAEC0D1BE1"
},
{
"OperatingSystem": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.3.148/Azure.Functions.Cli.osx-x64.2.3.148.zip",
"sha2": "CEC68D657541B6FE16F54119FB52C32DFB93F53BBC2673BE74FF4B1EC34F20F7"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.3.148/Azure.Functions.Cli.win-x64.2.3.148.zip",
"sha2": "20D591555D966E88242576DFD34CA880A96C0FA28114F716BCC460DD63E06D7B"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.3.148/Azure.Functions.Cli.win-x86.2.3.148.zip",
"sha2": "11B88D8EDBBB1530A2D735F609C90FCDCA36DBB60400C08FD0D4110D31D954EF"
}
]
},
"2.15.0": {
"Microsoft.NET.Sdk.Functions": "1.0.24",
"cli": "https://functionscdn.azureedge.net/public/2.3.199/Azure.Functions.Cli.min.win-x86.2.3.199.zip",
"sha2": "48ECBCBD1B22F288593DB5463640B1FB8DB0ECA6D29DAF29C2A119323FA873C1",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ItemTemplates/2.0.10321",
"projectTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ProjectTemplates/2.0.10321",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.10321.zip",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.3.199/Azure.Functions.Cli.linux-x64.2.3.199.zip",
"sha2": "8CEA1B4581EF77A8465C9F3205580D21ADE734A0D5AC5C7DB3441A72D37BF010"
},
{
"OperatingSystem": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.3.199/Azure.Functions.Cli.osx-x64.2.3.199.zip",
"sha2": "A0C7B52FC2AC448F6FCD2BED2EC7C6899F5CE1D6D2F5BFF81646EE44DA783147"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.3.199/Azure.Functions.Cli.win-x64.2.3.199.zip",
"sha2": "32E23C92E4D6ADE23D5CE144448648124B9113F30C58C66F50420BC9309A5721"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.3.199/Azure.Functions.Cli.win-x86.2.3.199.zip",
"sha2": "0C52B54843B02966ECE5AB23581F7650976A18B28062FF0FA76436AA53DC7485"
}
]
},
"2.16.0": {
"Microsoft.NET.Sdk.Functions": "1.0.24",
"cli": "https://functionscdn.azureedge.net/public/2.4.249/Azure.Functions.Cli.min.win-x86.2.4.249.zip",
"sha2": "945CD7CD9FE3AF0296CA525CCC490AB41516AD96728A3228C35FEACAA1015859",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ItemTemplates/2.0.10328",
"projectTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ProjectTemplates/2.0.10328",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.10330.zip",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.249/Azure.Functions.Cli.linux-x64.2.4.249.zip",
"sha2": "6246BA8835F0639854DC83AB91B518A99484F5D34F3B2D14DB8D88A369F2075A"
},
{
"OperatingSystem": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.249/Azure.Functions.Cli.osx-x64.2.4.249.zip",
"sha2": "93082D90F8324A50E690B1CC1FC1645ABF839C17A10F1DB48337FAB423E6213E"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.249/Azure.Functions.Cli.win-x64.2.4.249.zip",
"sha2": "CD75780A61C6C559569D9ED5D3B4A5C936221623BD763251D8579AFF88E9BA50"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.249/Azure.Functions.Cli.win-x86.2.4.249.zip",
"sha2": "36E288572BA73851F1A6C007FDC71754A27BBEE526E1466479F61E54C4873D9A"
}
]
},
"2.17.0": {
"Microsoft.NET.Sdk.Functions": "1.0.24",
"cli": "https://functionscdn.azureedge.net/public/2.4.299/Azure.Functions.Cli.min.win-x86.2.4.299.zip",
"sha2": "C024A9206C649E147672871E173D7BA18E2C89A851ADAB47CD22898BAEDA107E",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ItemTemplates/2.0.10333",
"projectTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ProjectTemplates/2.0.10333",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.10333.zip",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.299/Azure.Functions.Cli.linux-x64.2.4.299.zip",
"sha2": "6594493654D408B407F6B317671D30386CBBD2FC2BE43DD1000299859DF7E51B"
},
{
"OperatingSystem": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.299/Azure.Functions.Cli.osx-x64.2.4.299.zip",
"sha2": "D40A67760C4D9148C98560FBBAB8D5B74D08C869A44C6BC83951ABCA5078ECCB"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.299/Azure.Functions.Cli.win-x64.2.4.299.zip",
"sha2": "3E678D2EC100DA9B3C250AEE8A8F82BE4F28F8C311C3761C021A507571C7A3F2"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.299/Azure.Functions.Cli.win-x86.2.4.299.zip",
"sha2": "951478A6E6E72F37744FF97B12341A418794E0ABF5BACC4E5AA7143CB18057AE"
}
]
},
"2.17.1": {
"Microsoft.NET.Sdk.Functions": "1.0.24",
"cli": "https://functionscdn.azureedge.net/public/2.4.379/Azure.Functions.Cli.min.win-x86.2.4.379.zip",
"sha2": "E8A657CAF641DA25F35DDCF0249D09AAC9C721FC1139ECF31F6282D2D5BC4DCB",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ItemTemplates/2.0.10333",
"projectTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ProjectTemplates/2.0.10333",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.10333.zip",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.379/Azure.Functions.Cli.linux-x64.2.4.379.zip",
"sha2": "52E6D18786F436878D497864D4F381542E840230DFC06740979B43E6FAD1CA23"
},
{
"OperatingSystem": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.379/Azure.Functions.Cli.osx-x64.2.4.379.zip",
"sha2": "B1634105B916B5F501D06A8E73702458E1ACE0BFAC058FF28A99A45617C650D2"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.379/Azure.Functions.Cli.win-x64.2.4.379.zip",
"sha2": "FDB0360110C09B479A56589E100234C2AF136D1E9D2983F19CCFE9DF38C76C73"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.379/Azure.Functions.Cli.win-x86.2.4.379.zip",
"sha2": "92B67719288602B2534F6B933F650F1CC78D5AED5B02732AD3EAB15B44F3E79B"
}
]
},
"2.18.0": {
"Microsoft.NET.Sdk.Functions": "1.0.24",
"cli": "https://functionscdn.azureedge.net/public/2.4.321/Azure.Functions.Cli.min.win-x86.2.4.321.zip",
"sha2": "528BCE2A54DC1FD183680F777A4653A9D86C2FC4554CD8F5091520B9DAF3AC96",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ItemTemplates/2.0.10333",
"projectTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ProjectTemplates/2.0.10333",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.10333.zip",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.321/Azure.Functions.Cli.linux-x64.2.4.321.zip",
"sha2": "F69928B3F5268B3C71C4E3643B19FBAA4EC9AF15754AD54F8A5F75F92CF5C70A"
},
{
"OperatingSystem": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.321/Azure.Functions.Cli.osx-x64.2.4.321.zip",
"sha2": "E826F6A156B1FBAC76107D523AED5B7496501A46DA002659C683A0184AC30137"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.321/Azure.Functions.Cli.win-x64.2.4.321.zip",
"sha2": "D3AEBDD9D30BE76A23105D1698447E060B5B27E85B12283495F890FC58F9C6B3"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.321/Azure.Functions.Cli.win-x86.2.4.321.zip",
"sha2": "DAFA835A4FC7752CFD70EE3186CC299D604EB6A570F6C6F0DD64D5EDF79D559C"
}
]
},
"2.18.1": {
"Microsoft.NET.Sdk.Functions": "1.0.24",
"cli": "https://functionscdn.azureedge.net/public/2.4.401/Azure.Functions.Cli.min.win-x86.2.4.401.zip",
"sha2": "38889B4970CFDE0AD856AB9A9775A0F50106DBCA291E945F6C0B3DD59E2AE6F0",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ItemTemplates/2.0.10333",
"projectTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ProjectTemplates/2.0.10333",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.10336.zip",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.401/Azure.Functions.Cli.linux-x64.2.4.401.zip",
"sha2": "156C7BF8571B9AD401C2D2BF528F934EC9F4399E3F4A1762ADC2F64AE9C269D5"
},
{
"OS": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.401/Azure.Functions.Cli.osx-x64.2.4.401.zip",
"sha2": "D600FD9FA88518BF7366DB1928D0EF703239B0958DFE99B85DB37EB10F935100"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.401/Azure.Functions.Cli.win-x64.2.4.401.zip",
"sha2": "B75AFF34288FED291BD6A3F9EB66D195B6389CFE162BF335B4D86A0DB8D7E1F6"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.401/Azure.Functions.Cli.win-x86.2.4.401.zip",
"sha2": "571CF2BAD9932CB5ED5634009BA280A3BB6F677DDA0D0F95F731C3915106B693"
}
]
},
"2.18.2": {
"Microsoft.NET.Sdk.Functions": "1.0.24",
"cli": "https://functionscdn.azureedge.net/public/2.4.419/Azure.Functions.Cli.min.win-x86.2.4.419.zip",
"sha2": "AA4ED53B64ADB5DF3E74A80C06BF88DE6D80DEF4F7515B3EE751447DD1649A5E",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ItemTemplates/2.0.10333",
"projectTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ProjectTemplates/2.0.10333",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.10336.zip",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.419/Azure.Functions.Cli.linux-x64.2.4.419.zip",
"sha2": "3E651B20E59A9F53C7546A315B25EA129ED8256840C8EEA2D7A54C72B5C70481"
},
{
"OS": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.419/Azure.Functions.Cli.osx-x64.2.4.419.zip",
"sha2": "55586F528348165FA62AF9C234C027D9BF6664521D5B8BB291BD1DB44D853080"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.419/Azure.Functions.Cli.win-x64.2.4.419.zip",
"sha2": "81B7D6A96C319769B5A79DAD852FF4FC211CC24399315A52C81D36FDD90802F0"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.419/Azure.Functions.Cli.win-x86.2.4.419.zip",
"sha2": "AA4ED53B64ADB5DF3E74A80C06BF88DE6D80DEF4F7515B3EE751447DD1649A5E"
}
]
},
"2.18.3": {
"Microsoft.NET.Sdk.Functions": "1.0.24",
"cli": "https://functionscdn.azureedge.net/public/2.4.432/Azure.Functions.Cli.min.win-x86.2.4.432.zip",
"sha2": "B4ABFA893BADACA555B87AA2481D716B0BFCA99625B66F5FC26BF5BF6455343F",
"nodeVersion": "8.11.1",
"localEntryPoint": "func.exe",
"itemTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ItemTemplates/2.0.10333",
"projectTemplates": "https://www.nuget.org/api/v2/package/Microsoft.Azure.WebJobs.ProjectTemplates/2.0.10333",
"templateApiZip": "https://functionscdn.azureedge.net/public/TemplatesApi/2.0.10336.zip",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"requiredRuntime": ".NET Core",
"minimumRuntimeVersion": "2.1",
"standaloneCli": [
{
"OS": "Linux",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.432/Azure.Functions.Cli.linux-x64.2.4.432.zip",
"sha2": "82057D7B7E0EB432F20CFC8D05749406050CB43B8D83B108E38D737E115AEE3E"
},
{
"OS": "MacOS",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.432/Azure.Functions.Cli.osx-x64.2.4.432.zip",
"sha2": "32C8DCD2DE2254B214CEA95C87A1CA5EC30693CADBA3A2D55D69E70013357CE2"
},
{
"OS": "Windows",
"Architecture": "x64",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.432/Azure.Functions.Cli.win-x64.2.4.432.zip",
"sha2": "26F7E0CCBE08468BA22824459DD8A960CD5010AEE56994741366313457F971B7"
},
{
"OS": "Windows",
"Architecture": "x86",
"downloadLink": "https://functionscdn.azureedge.net/public/2.4.432/Azure.Functions.Cli.win-x86.2.4.432.zip",
"sha2": "6CB8CB0E5C583B94D44377A951118509F527BFAE185C665210BA918ACBF2AF85"
}
]
},
"2.18.4": {