Skip to content

Commit

Permalink
v3.3.7
Browse files Browse the repository at this point in the history
   - Drop support for net7.0 who reached EOL
   - Upgrade System.Drawing.Common to 8.0.5 on needed target frameworks
  • Loading branch information
monoman committed May 21, 2024
1 parent dab5928 commit 8ce6464
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions SvgNet/SvgNet.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">$(TargetFrameworks);net462;net6.0-windows;net7.0-windows;net8.0-windows</TargetFrameworks>
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">$(TargetFrameworks);net462;net6.0-windows;net8.0-windows</TargetFrameworks>
<UseWindowsForms Condition="'$(TargetFramework)' == 'net6.0-windows' or '$(TargetFramework)' == 'net7.0-windows' or '$(TargetFramework)' == 'net8.0-windows'">true</UseWindowsForms>
<LangVersion>preview</LangVersion>
<AssemblyName>SVG</AssemblyName>
<PackageId>SvgNet</PackageId>
<Version>3.3.6</Version>
<Version>3.3.7</Version>
<RootNamespace>SvgNet</RootNamespace>
<DocumentationFile>svgnetdoc.xml</DocumentationFile>
<NoWarn>CS1591</NoWarn>
Expand All @@ -22,7 +22,10 @@
<PackageTags>SVG</PackageTags>
<Product>SvgNet</Product>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>Some changes on packaging readme file</PackageReleaseNotes>
<PackageReleaseNotes>
- Drop support for net7.0 who reached EOL
- Upgrade System.Drawing.Common to 8.0.5 on needed target frameworks
</PackageReleaseNotes>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<ImplicitUsings>true</ImplicitUsings>
Expand Down Expand Up @@ -72,7 +75,7 @@
</Target>

<ItemGroup Condition="'$(TargetFramework)' != 'net462' And '$(TargetFramework)' != 'net8.0-windows' And '$(TargetFramework)' != 'net7.0-windows' And '$(TargetFramework)' != 'net6.0-windows'">
<PackageReference Include="System.Drawing.Common" Version="8.0.4" />
<PackageReference Include="System.Drawing.Common" Version="8.0.5" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 8ce6464

Please sign in to comment.