Skip to content

Commit 15443b4

Browse files
committed
v2.1.8 - Added simple compression to DrawBitmapData. PR #46 by Thomas T1G0FF
1 parent de92aaa commit 15443b4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ A fork of the SvgNet & SvgGdi bridge (http://www.codeproject.com/KB/cs/svgnet.as
44

55
__SvgNet is now available as a Nuget:__ [SvgNet](https://www.nuget.org/packages/SvgNet/).
66

7-
__Latest version 2.1.6 is .NET Standard 2.0 and 2.1 and also .NET 5.0 (base and Windows) compatible and works with .NET Core 2.x and 3.x and .NET 5.0, but now requires .NET Framework 4.6.1 or higher__
7+
__Latest version 2.1.8 is .NET Standard 2.0 and 2.1 and also .NET 5.0 (base and Windows) compatible and works with .NET Core 2.x and 3.x and .NET 5.0, but now requires .NET Framework 4.6.1 or higher__
88

9-
To build this version properly you need .NET 5.0.200+ SDK installed
9+
To build this version properly you need .NET 5.0.302+ SDK installed
1010

1111
## License: BSD
1212

SvgNet/SvgNet.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0</TargetFrameworks>
5-
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">$(TargetFrameworks);net461;net5.0-windows</TargetFrameworks>
5+
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">$(TargetFrameworks);net461;net5.0-windows</TargetFrameworks>
66
<UseWindowsForms Condition="'$(TargetFramework)' == 'net5.0-windows'">true</UseWindowsForms>
77
<LangVersion>9.0</LangVersion>
88
<AssemblyName>SVG</AssemblyName>
99
<PackageId>SvgNet</PackageId>
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
11-
<Version>2.1.7</Version>
11+
<Version>2.1.8</Version>
1212
<RootNamespace>SVG</RootNamespace>
1313
<DocumentationFile>svgnetdoc.xml</DocumentationFile>
1414
<NoWarn>CS1591</NoWarn>
@@ -29,10 +29,10 @@
2929
<PackageLicenseFile>LICENSE</PackageLicenseFile>
3030
</PropertyGroup>
3131

32-
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
33-
<DefineConstants>DEBUG;TRACE</DefineConstants>
34-
<WarningsAsErrors>NU1605</WarningsAsErrors>
35-
</PropertyGroup>
32+
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
33+
<DefineConstants>DEBUG;TRACE</DefineConstants>
34+
<WarningsAsErrors>NU1605</WarningsAsErrors>
35+
</PropertyGroup>
3636

3737
<Target AfterTargets="Pack" Name="PushPackage" Condition="'$(OS)' == 'Windows_NT'">
3838
<PropertyGroup>

0 commit comments

Comments
 (0)