Skip to content

Add back netcoreapp3.1 #129

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LibZipSharp.UnitTest/LibZipSharp.UnitTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="$(MSBuildThisFileDirectory)..\LibZipSharp.props" />

<PropertyGroup>
<TargetFrameworks>net471;net7.0</TargetFrameworks>
<TargetFrameworks>net471;net7.0;netcoreapp3.1</TargetFrameworks>

<IsPackable>false</IsPackable>
<LibZipSharpBundleAllNativeLibraries>true</LibZipSharpBundleAllNativeLibraries>
Expand Down
2 changes: 1 addition & 1 deletion LibZipSharp/libZipSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PropertyGroup>
<AssemblyName>libZipSharp</AssemblyName>
<AssemblyTitle>libZipSharp</AssemblyTitle>
<TargetFrameworks>net7.0;netstandard2.0;net45</TargetFrameworks>
<TargetFrameworks>net7.0;netstandard2.0;net45;netcoreapp3.1</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<RootNamespace>Xamarin.Tools.Zip</RootNamespace>
Expand Down
12 changes: 11 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,8 @@ stages:
- stage: Test
dependsOn: Build
variables:
DotNetCoreVersion: 7.0.200
DotNetCoreVersion: 3.1.201
DotNetVersion: 7.0.203
jobs:
- job: testlinux
displayName: 'Test Linux'
Expand All @@ -185,6 +186,9 @@ stages:
- template: yaml-templates/use-dot-net.yaml
parameters:
version: $(DotNetCoreVersion)
- template: yaml-templates/use-dot-net.yaml
parameters:
version: $(DotNetVersion)
- task: DownloadBuildArtifacts@0
displayName: download artifacts
inputs:
Expand All @@ -211,6 +215,9 @@ stages:
- template: yaml-templates/use-dot-net.yaml
parameters:
version: $(DotNetCoreVersion)
- template: yaml-templates/use-dot-net.yaml
parameters:
version: $(DotNetVersion)
- task: DownloadBuildArtifacts@0
displayName: download artifacts
inputs:
Expand Down Expand Up @@ -239,6 +246,9 @@ stages:
- template: yaml-templates/use-dot-net.yaml
parameters:
version: $(DotNetCoreVersion)
- template: yaml-templates/use-dot-net.yaml
parameters:
version: $(DotNetVersion)
- task: DownloadBuildArtifacts@0
displayName: download artifacts
inputs:
Expand Down