|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
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 | | - <UseWindowsForms Condition="'$(TargetFramework)' == 'net6.0-windows' or '$(TargetFramework)' == 'net8.0-windows'">true</UseWindowsForms> |
| 4 | + <TargetFrameworks>netstandard2.0;netstandard2.1;net8.0</TargetFrameworks> |
| 5 | + <TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">$(TargetFrameworks);net462;net8.0-windows</TargetFrameworks> |
| 6 | + <UseWindowsForms Condition="'$(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.9</Version> |
| 10 | + <Version>3.4.0</Version> |
11 | 11 | <RootNamespace>SvgNet</RootNamespace> |
12 | 12 | <DocumentationFile>svgnetdoc.xml</DocumentationFile> |
13 | 13 | <NoWarn>CS1591</NoWarn> |
|
23 | 23 | <Product>SvgNet</Product> |
24 | 24 | <RepositoryType>git</RepositoryType> |
25 | 25 | <PackageReleaseNotes> |
26 | | - - Fixes issue #47 - Metafile parsing hack still may err but it is only tried when lines have custom line caps now, what may not be that common |
| 26 | + - Drops building for .NET 6.0 which is beyond End of Support |
27 | 27 | </PackageReleaseNotes> |
28 | 28 | <PackageLicenseFile>LICENSE</PackageLicenseFile> |
29 | 29 | <PackageReadmeFile>README.md</PackageReadmeFile> |
|
73 | 73 | <Message Importance="high" Text="Didn't push $(LatestPackage) to Nuget - Already there" Condition="$(VersionAlreadyPushed)" /> |
74 | 74 | </Target> |
75 | 75 |
|
76 | | - <ItemGroup Condition="'$(TargetFramework)' != 'net462' And '$(TargetFramework)' != 'net8.0-windows' And '$(TargetFramework)' != 'net6.0-windows'"> |
| 76 | + <ItemGroup Condition="'$(TargetFramework)' != 'net462' And '$(TargetFramework)' != 'net8.0-windows'"> |
77 | 77 | <PackageReference Include="System.Drawing.Common" /> |
78 | 78 | </ItemGroup> |
79 | 79 |
|
|
0 commit comments