Skip to content

Commit

Permalink
Updated version to v2.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bezzad committed May 3, 2022
1 parent 2a00618 commit dd2f7d4
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions src/Downloader/Downloader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,26 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;netcoreapp3.1;net452;net6.0</TargetFrameworks>
<LangVersion>latestMajor</LangVersion>
<Version>2.3.3</Version>
<Version>2.3.4</Version>
<Title>Downloader</Title>
<Authors>Behzad Khosravifar</Authors>
<Company>bezzad</Company>
<Description>Fast and reliable multipart downloader with asynchronous progress events for .NET</Description>
<PackageProjectUrl>https://github.com/bezzad/Downloader</PackageProjectUrl>
<RepositoryUrl>https://github.com/bezzad/Downloader</RepositoryUrl>
<PackageTags>download-manager, downloader, download-file, stream-downloader, multipart-download</PackageTags>
<PackageReleaseNotes>* Fixed JSON Serialization. issue #81</PackageReleaseNotes>
<PackageReleaseNotes>* Added new feature for ranged downloads #85</PackageReleaseNotes>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Downloader.snk</AssemblyOriginatorKeyFile>
<Copyright>Copyright (C) 2020 Behzad Khosravifar</Copyright>
<Copyright>Copyright (C) 2019-2022 Behzad Khosravifar</Copyright>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>downloader.png</PackageIcon>
<RepositoryType>git</RepositoryType>
<AssemblyVersion>2.3.3</AssemblyVersion>
<FileVersion>2.3.3</FileVersion>
<AssemblyVersion>2.3.4</AssemblyVersion>
<FileVersion>2.3.4</FileVersion>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand All @@ -33,8 +34,20 @@
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|AnyCPU'">
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0|AnyCPU'">
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<ItemGroup>
<None Remove="downloader.png" />
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="downloader.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
Expand Down

0 comments on commit dd2f7d4

Please sign in to comment.