|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks> |
5 | | - <TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">$(TargetFrameworks);net462;net6.0-windows;net7.0-windows;net8.0-windows</TargetFrameworks> |
| 4 | + <TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks> |
| 5 | + <TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">$(TargetFrameworks);net462;net6.0-windows;net8.0-windows</TargetFrameworks> |
6 | 6 | <UseWindowsForms Condition="'$(TargetFramework)' == 'net6.0-windows' or '$(TargetFramework)' == 'net7.0-windows' or '$(TargetFramework)' == 'net8.0-windows'">true</UseWindowsForms> |
7 | 7 | <LangVersion>preview</LangVersion> |
8 | 8 | <AssemblyName>SVG</AssemblyName> |
9 | 9 | <PackageId>SvgNet</PackageId> |
10 | | - <Version>3.3.6</Version> |
| 10 | + <Version>3.3.7</Version> |
11 | 11 | <RootNamespace>SvgNet</RootNamespace> |
12 | 12 | <DocumentationFile>svgnetdoc.xml</DocumentationFile> |
13 | 13 | <NoWarn>CS1591</NoWarn> |
|
22 | 22 | <PackageTags>SVG</PackageTags> |
23 | 23 | <Product>SvgNet</Product> |
24 | 24 | <RepositoryType>git</RepositoryType> |
25 | | - <PackageReleaseNotes>Some changes on packaging readme file</PackageReleaseNotes> |
| 25 | + <PackageReleaseNotes> |
| 26 | + - Drop support for net7.0 who reached EOL |
| 27 | + - Upgrade System.Drawing.Common to 8.0.5 on needed target frameworks |
| 28 | + </PackageReleaseNotes> |
26 | 29 | <PackageLicenseFile>LICENSE</PackageLicenseFile> |
27 | 30 | <PackageReadmeFile>README.md</PackageReadmeFile> |
28 | 31 | <ImplicitUsings>true</ImplicitUsings> |
|
72 | 75 | </Target> |
73 | 76 |
|
74 | 77 | <ItemGroup Condition="'$(TargetFramework)' != 'net462' And '$(TargetFramework)' != 'net8.0-windows' And '$(TargetFramework)' != 'net7.0-windows' And '$(TargetFramework)' != 'net6.0-windows'"> |
75 | | - <PackageReference Include="System.Drawing.Common" Version="8.0.4" /> |
| 78 | + <PackageReference Include="System.Drawing.Common" Version="8.0.5" /> |
76 | 79 | </ItemGroup> |
77 | 80 |
|
78 | 81 | <ItemGroup> |
|
0 commit comments