Skip to content

Commit

Permalink
2.1.1 - Update SDKs and dependencies
Browse files Browse the repository at this point in the history
Incorporate fix from PR #27 by https://github.com/Rieko-I
  • Loading branch information
monoman committed Oct 20, 2020
1 parent cd46226 commit 3b27f14
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 14 deletions.
10 changes: 2 additions & 8 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,11 @@ A fork of the SvgNet & SvgGdi bridge (http://www.codeproject.com/KB/cs/svgnet.as

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

__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__
__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__

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

----------
```diff
- WARNING: Switching default branch from master to main
```
----------

## License: BSD

Copyright © 2003 RiskCare Ltd. All rights reserved.
Expand Down
6 changes: 3 additions & 3 deletions SvgNet/SvgNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<PropertyGroup>
<TargetFrameworks>net461;netstandard2.0;netstandard2.1</TargetFrameworks>
<TargetFrameworks Condition="$(NONET461) == 'true'">netstandard2.0;netstandard2.1</TargetFrameworks>
<LangVersion>8.0</LangVersion>
<LangVersion>9.0</LangVersion>
<AssemblyName>SVG</AssemblyName>
<PackageId>SvgNet</PackageId>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageOutputPath>..\.nugets</PackageOutputPath>
<Version>2.1.0</Version>
<Version>2.1.1</Version>
<RootNamespace>SVG</RootNamespace>
<DocumentationFile>svgnetdoc.xml</DocumentationFile>
<NoWarn>CS1591</NoWarn>
Expand All @@ -29,7 +29,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="4.6.0" />
<PackageReference Include="System.Drawing.Common" Version="4.7.0" />
<PackageReference Include="System.Drawing.Primitives" Version="4.3.0" />
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions SvgNetUnitTests/SvgNetUnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
<packagereference Include="NUnit3TestAdapter" Version="3.15.1"></packagereference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<packagereference Include="NUnit3TestAdapter" Version="3.17.0"></packagereference>
<packagereference Include="NUnit" Version="3.12.0"></packagereference>
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "3.0.100"
"version": "3.1.403"
}
}

0 comments on commit 3b27f14

Please sign in to comment.