mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-13 01:34:14 +01:00
format fix for lint
This commit is contained in:
parent
df8d97ebbb
commit
937db76e00
1 changed files with 9 additions and 17 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue