Skip to content

Commit 3b27f14

Browse files
committed
2.1.1 - Update SDKs and dependencies
Incorporate fix from PR #27 by https://github.com/Rieko-I
1 parent cd46226 commit 3b27f14

File tree

4 files changed

+8
-14
lines changed

4 files changed

+8
-14
lines changed

README.markdown

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,11 @@ 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.0.5 is .NET Standard 2.0 and 2.1 compatible and works with .NET Core 2.x and 3.x, but now requires .NET Framework 4.6.1 or higher__
7+
__Latest version 2.1.1 is .NET Standard 2.0 and 2.1 compatible and works with .NET Core 2.x and 3.x, but now requires .NET Framework 4.7.1 or higher__
88

9-
To build this version properly you need .NET Core 3.0.100 SDK installed as it is pinned (via global.json)
9+
To build this version properly you need .NET Core 3.1.403 SDK installed as it is pinned (via global.json)
1010
to that version...
1111

12-
----------
13-
```diff
14-
- WARNING: Switching default branch from master to main
15-
```
16-
----------
17-
1812
## License: BSD
1913

2014
Copyright © 2003 RiskCare Ltd. All rights reserved.

SvgNet/SvgNet.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<PropertyGroup>
44
<TargetFrameworks>net461;netstandard2.0;netstandard2.1</TargetFrameworks>
55
<TargetFrameworks Condition="$(NONET461) == 'true'">netstandard2.0;netstandard2.1</TargetFrameworks>
6-
<LangVersion>8.0</LangVersion>
6+
<LangVersion>9.0</LangVersion>
77
<AssemblyName>SVG</AssemblyName>
88
<PackageId>SvgNet</PackageId>
99
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1010
<PackageOutputPath>..\.nugets</PackageOutputPath>
11-
<Version>2.1.0</Version>
11+
<Version>2.1.1</Version>
1212
<RootNamespace>SVG</RootNamespace>
1313
<DocumentationFile>svgnetdoc.xml</DocumentationFile>
1414
<NoWarn>CS1591</NoWarn>
@@ -29,7 +29,7 @@
2929
</PropertyGroup>
3030

3131
<ItemGroup>
32-
<PackageReference Include="System.Drawing.Common" Version="4.6.0" />
32+
<PackageReference Include="System.Drawing.Common" Version="4.7.0" />
3333
<PackageReference Include="System.Drawing.Primitives" Version="4.3.0" />
3434
</ItemGroup>
3535

SvgNetUnitTests/SvgNetUnitTests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
</ItemGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
14-
<packagereference Include="NUnit3TestAdapter" Version="3.15.1"></packagereference>
13+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
14+
<packagereference Include="NUnit3TestAdapter" Version="3.17.0"></packagereference>
1515
<packagereference Include="NUnit" Version="3.12.0"></packagereference>
1616
</ItemGroup>
1717

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "3.0.100"
3+
"version": "3.1.403"
44
}
55
}

0 commit comments

Comments
 (0)