@@ -48,6 +48,7 @@ private static string config(string @default = null, [CallerMemberName] string k
48
48
"min.win-x86" ,
49
49
"min.win-x64" ,
50
50
"linux-x64" ,
51
+ "linux-arm64" ,
51
52
"osx-x64" ,
52
53
"osx-arm64" ,
53
54
"win-x86" ,
@@ -60,6 +61,7 @@ private static string config(string @default = null, [CallerMemberName] string k
60
61
{ "win-x64" , "WINDOWS" } ,
61
62
{ "win-arm64" , "WINDOWS" } ,
62
63
{ "linux-x64" , "LINUX" } ,
64
+ { "linux-arm64" , "LINUX" } ,
63
65
{ "osx-x64" , "OSX" } ,
64
66
{ "osx-arm64" , "OSX" } ,
65
67
{ "min.win-x86" , "WINDOWS" } ,
@@ -95,6 +97,7 @@ private static string config(string @default = null, [CallerMemberName] string k
95
97
{
96
98
"linux" ,
97
99
"linux-x64" ,
100
+ "linux-arm64" ,
98
101
"unix" ,
99
102
"linux-musl-x64"
100
103
} ;
@@ -121,6 +124,7 @@ private static Dictionary<string, string[]> GetPowerShell72Runtimes()
121
124
{ "win-x64" , _winPowershellRuntimes } ,
122
125
{ "win-arm64" , _winPowershellRuntimes } ,
123
126
{ "linux-x64" , _linPowershellRuntimes } ,
127
+ { "linux-arm64" , _linPowershellRuntimes } ,
124
128
{ "osx-x64" , _osxPowershellRuntimes } ,
125
129
{ "osx-arm64" , _osxARMPowershellRuntimes }
126
130
} ;
@@ -135,6 +139,7 @@ private static Dictionary<string, string[]> GetPowerShell74Runtimes()
135
139
{ "win-x64" , _winPowershellRuntimesNet8 } ,
136
140
{ "win-arm64" , _winPowershellRuntimesNet8 } ,
137
141
{ "linux-x64" , _linPowershellRuntimes } ,
142
+ { "linux-arm64" , _linPowershellRuntimes } ,
138
143
{ "osx-x64" , _osxPowershellRuntimes } ,
139
144
{ "osx-arm64" , _osxARMPowershellRuntimes }
140
145
} ;
@@ -152,6 +157,7 @@ private static Dictionary<string, string[]> GetPowerShell74Runtimes()
152
157
{ "win-x64" , _winPowershellRuntimes } ,
153
158
{ "win-arm64" , _winPowershellRuntimes } ,
154
159
{ "linux-x64" , _linPowershellRuntimes } ,
160
+ { "linux-arm64" , _linPowershellRuntimes } ,
155
161
{ "osx-x64" , _osxPowershellRuntimes } ,
156
162
// NOTE: PowerShell 7.0 does not support arm. First version supporting it is 7.2
157
163
// https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-macos?view=powershell-7.2#supported-versions
@@ -180,15 +186,15 @@ private static Dictionary<string, string[]> GetPowerShell74Runtimes()
180
186
public static readonly string OutputDir = Path . Combine ( Path . GetFullPath ( ".." ) , "artifacts" ) ;
181
187
182
188
public static readonly string SBOMManifestTelemetryDir = Path . Combine ( OutputDir , "SBOMManifestTelemetry" ) ;
183
-
189
+
184
190
public static string TargetFramework = "net6.0" ;
185
191
186
192
public static readonly string NupkgPublishDir = Path . GetFullPath ( $ "../src/Azure.Functions.Cli/bin/Release/{ TargetFramework } /publish") ;
187
-
193
+
188
194
public static readonly string PreSignTestDir = "PreSignTest" ;
189
195
190
196
public static readonly string SignTestDir = "SignTest" ;
191
-
197
+
192
198
public static readonly string DotnetIsolatedItemTemplates = $ "https://www.nuget.org/api/v2/package/Microsoft.Azure.Functions.Worker.ItemTemplates/{ DotnetIsolatedItemTemplatesVersion } ";
193
199
194
200
public static readonly string DotnetIsolatedProjectTemplates = $ "https://www.nuget.org/api/v2/package/Microsoft.Azure.Functions.Worker.ProjectTemplates/{ DotnetIsolatedProjectTemplatesVersion } ";
@@ -275,7 +281,7 @@ public class SignInfo
275
281
"Grpc.AspNetCore.Server.dll" ,
276
282
"Grpc.Core.dll" ,
277
283
"Grpc.Core.Api.dll" ,
278
- "Grpc.Net.Client.dll" ,
284
+ "Grpc.Net.Client.dll" ,
279
285
"Grpc.Net.ClientFactory.dll" ,
280
286
"Grpc.Net.Common.dll" ,
281
287
"grpc_csharp_ext.x64.dll" ,
0 commit comments