We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b91ddc6 + 2ca48b6 commit c0a1d74Copy full SHA for c0a1d74
DebUOS/Packaging.DebUOS/Contexts/Configurations/DebUOSConfiguration.cs
@@ -182,6 +182,20 @@ public string Architecture
182
{
183
architecture = "arm64";
184
}
185
+ else if (RuntimeIdentifier == "linux-loongarch64")
186
+ {
187
+ architecture = "loongarch64";
188
+ }
189
+ //else if (RuntimeIdentifier == "linux-mips64el")
190
+ //{
191
+ // // 这个似乎 dotnet 是没有支持的,且我也没设备,先不写了。有需要的话,开发者自己加上 Architecture 就可以了
192
+ // architecture = "mips64el";
193
+ //}
194
+ //else if (RuntimeIdentifier == "linux-sw_64")
195
196
+ // // 这个似乎 dotnet 是没有支持的,且我也没设备
197
+ // architecture = "sw_64";
198
199
200
return architecture ?? "amd64";
201
0 commit comments