format fix for lint

This commit is contained in:
Kerry Cao 2023-09-06 13:22:13 -06:00
parent df8d97ebbb
commit 937db76e00

View file

@ -85,7 +85,7 @@ public static async Task<List<string>> DownloadFFMpegSuite(
return successList; return successList;
} }
/// <summary> /// <summary>
/// Download file from uri /// Download file from uri
/// </summary> /// </summary>
@ -134,29 +134,21 @@ private class DownloadInfo
private class BinaryInfo private class BinaryInfo
{ {
[JsonPropertyName("windows-64")] [JsonPropertyName("windows-64")] public DownloadInfo? Windows64 { get; set; }
public DownloadInfo? Windows64 { get; set; }
[JsonPropertyName("windows-32")] [JsonPropertyName("windows-32")] public DownloadInfo? Windows32 { get; set; }
public DownloadInfo? Windows32 { get; set; }
[JsonPropertyName("linux-32")] [JsonPropertyName("linux-32")] public DownloadInfo? Linux32 { get; set; }
public DownloadInfo? Linux32 { get; set; }
[JsonPropertyName("linux-64")] [JsonPropertyName("linux-64")] public DownloadInfo? Linux64 { get; set; }
public DownloadInfo? Linux64 { get; set; }
[JsonPropertyName("linux-armhf")] [JsonPropertyName("linux-armhf")] public DownloadInfo? LinuxArmhf { get; set; }
public DownloadInfo? LinuxArmhf { get; set; }
[JsonPropertyName("linux-armel")] [JsonPropertyName("linux-armel")] public DownloadInfo? LinuxArmel { get; set; }
public DownloadInfo? LinuxArmel { get; set; }
[JsonPropertyName("linux-arm64")] [JsonPropertyName("linux-arm64")] public DownloadInfo? LinuxArm64 { get; set; }
public DownloadInfo? LinuxArm64 { get; set; }
[JsonPropertyName("osx-64")] [JsonPropertyName("osx-64")] public DownloadInfo? Osx64 { get; set; }
public DownloadInfo? Osx64 { get; set; }
/// <summary> /// <summary>
/// Automatically get the compatible download info for current os and architecture /// Automatically get the compatible download info for current os and architecture