Skip to content

Commit c89be6c

Browse files
authored
Merge pull request #2 from hkutluay/feature/net5-support
net5 support added
2 parents 65ee26d + 455d518 commit c89be6c

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Setup .NET Core
1111
uses: actions/setup-dotnet@v1
1212
with:
13-
dotnet-version: 3.1.100
13+
dotnet-version: 5.0.x
1414
- name: Build with dotnet
1515
run: dotnet build --configuration Release
1616
- name: Unit Tests

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup .NET Core
1313
uses: actions/setup-dotnet@v1
1414
with:
15-
dotnet-version: 3.1.101
15+
dotnet-version: 5.0.x
1616
- name: Build with dotnet
1717
run: dotnet build --configuration Release
1818
- name: Test with dotnet

ZipContent.Azure.Test/ZipContent.Azure.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

ZipContent.Azure/ZipContent.Azure.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.1;netstandard2.0;net5.0</TargetFrameworks>
55
<Authors>hkutluay</Authors>
66
<Description>AzurePartialFileReader for ZipContent.Core
77

@@ -11,13 +11,13 @@ Lists zip file content on Azure Blob without downloading whole document. Support
1111
<RepositoryUrl>https://github.com/hkutluay/ZipContent.Azure</RepositoryUrl>
1212
<PackageTags>zip list content azure</PackageTags>
1313
<PackageIcon>azure_logo.png</PackageIcon>
14-
<Version>1.1.0</Version>
15-
<AssemblyVersion>1.1.0.0</AssemblyVersion>
16-
<FileVersion>1.1.0.0</FileVersion>
14+
<Version>1.2.0</Version>
15+
<AssemblyVersion>1.2.0.0</AssemblyVersion>
16+
<FileVersion>1.2.0.0</FileVersion>
1717
</PropertyGroup>
1818
<ItemGroup>
1919
<PackageReference Include="Azure.Storage.Blobs" Version="12.4.2" />
20-
<PackageReference Include="ZipContent.Core" Version="1.1.1" />
20+
<PackageReference Include="ZipContent.Core" Version="1.2.0" />
2121
</ItemGroup>
2222
<ItemGroup>
2323
<None Include="azure_logo.png">

0 commit comments

Comments
 (0)