Skip to content

Commit

Permalink
Merge pull request #2 from hkutluay/feature/net5-support
Browse files Browse the repository at this point in the history
net5 support added
  • Loading branch information
hkutluay committed Jan 5, 2021
2 parents 65ee26d + 455d518 commit c89be6c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.100
dotnet-version: 5.0.x
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Unit Tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
dotnet-version: 5.0.x
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Test with dotnet
Expand Down
2 changes: 1 addition & 1 deletion ZipContent.Azure.Test/ZipContent.Azure.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net5.0</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down
10 changes: 5 additions & 5 deletions ZipContent.Azure/ZipContent.Azure.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;netstandard2.0;net5.0</TargetFrameworks>
<Authors>hkutluay</Authors>
<Description>AzurePartialFileReader for ZipContent.Core

Expand All @@ -11,13 +11,13 @@ Lists zip file content on Azure Blob without downloading whole document. Support
<RepositoryUrl>https://github.com/hkutluay/ZipContent.Azure</RepositoryUrl>
<PackageTags>zip list content azure</PackageTags>
<PackageIcon>azure_logo.png</PackageIcon>
<Version>1.1.0</Version>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
<Version>1.2.0</Version>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<FileVersion>1.2.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Storage.Blobs" Version="12.4.2" />
<PackageReference Include="ZipContent.Core" Version="1.1.1" />
<PackageReference Include="ZipContent.Core" Version="1.2.0" />
</ItemGroup>
<ItemGroup>
<None Include="azure_logo.png">
Expand Down

0 comments on commit c89be6c

Please sign in to comment.