Skip to content

Commit 732fce6

Browse files
author
Matthew Little
committed
Update target framework to support net45
1 parent 4ad264b commit 732fce6

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>netstandard1.3</TargetFramework>
4+
<TargetFrameworks>netstandard1.3;net45</TargetFrameworks>
55
<PackageId>SharpZipLib </PackageId>
66
<SignAssembly>True</SignAssembly>
77
<AssemblyOriginatorKeyFile>ICSharpCode.SharpZipLib.snk</AssemblyOriginatorKeyFile>
@@ -15,12 +15,13 @@ Please see https://github.com/icsharpcode/SharpZipLib/wiki/Release-1.0 for more
1515
<PackageProjectUrl>https://github.com/icsharpcode/SharpZipLib</PackageProjectUrl>
1616
</PropertyGroup>
1717

18-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
18+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.3|AnyCPU'">
1919
<DocumentationFile>bin\Debug\netstandard1.3\ICSharpCode.SharpZipLib.xml</DocumentationFile>
2020
</PropertyGroup>
2121

22-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
22+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard1.3|AnyCPU'">
2323
<DocumentationFile>bin\Release\netstandard1.3\ICSharpCode.SharpZipLib.xml</DocumentationFile>
2424
</PropertyGroup>
2525

26+
2627
</Project>

0 commit comments

Comments
 (0)