mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 01:55:45 +00:00
Remove specification of .NET Standard 2.1
This commit is contained in:
parent
ad27076c1f
commit
8f2d3d7125
2 changed files with 1 additions and 6 deletions
|
|
@ -1,10 +1,5 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.1</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<IsPackable>true</IsPackable>
|
||||
<Description>FFMpeg downloader extension for FFMpegCore</Description>
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ public static class FFMpegDownloader
|
|||
{
|
||||
if (binariesDictionary.TryGetValue(binaryFlag.ToString().ToLowerInvariant(), out var binaryUrl))
|
||||
{
|
||||
await using var zipStream = await httpClient.GetStreamAsync(new Uri(binaryUrl));
|
||||
using var zipStream = await httpClient.GetStreamAsync(new Uri(binaryUrl));
|
||||
var extracted = ExtractZipAndSave(zipStream, relevantOptions.BinaryFolder);
|
||||
successList.AddRange(extracted);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue