|
10 | 10 | <SignAssembly>true</SignAssembly>
|
11 | 11 | <PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
|
12 | 12 | <PackageTags>linq;serialize</PackageTags>
|
13 |
| - <PackageReleaseNotes>- fix serialization of onbound toString expressions</PackageReleaseNotes> |
| 13 | + <PackageReleaseNotes> |
| 14 | + - support for .NET 8.0 |
| 15 | + - support for .NET 4.8.1 |
| 16 | + - drop support for .NET 5.0 |
| 17 | + </PackageReleaseNotes> |
14 | 18 | <PackageProjectUrl>https://github.com/esskar/Serialize.Linq</PackageProjectUrl>
|
15 | 19 | <PackageLicenseUrl></PackageLicenseUrl>
|
16 | 20 | <RepositoryType>git</RepositoryType>
|
|
26 | 30 | </PropertyGroup>
|
27 | 31 |
|
28 | 32 | <PropertyGroup>
|
29 |
| - <TargetFrameworks>net48;net5.0;net6.0;net7.0;netstandard2.0;netstandard2.1</TargetFrameworks> |
30 |
| - <Version>3.0.0</Version> |
31 |
| - <AssemblyVersion>3.0.0.0</AssemblyVersion> |
32 |
| - <FileVersion>3.0.0.0</FileVersion> |
| 33 | + <TargetFrameworks>net48;net481;net6.0;net7.0;net8.0;netstandard2.0;netstandard2.1</TargetFrameworks> |
| 34 | + <Version>3.1.0</Version> |
| 35 | + <AssemblyVersion>3.1.0.0</AssemblyVersion> |
| 36 | + <FileVersion>3.1.0.0</FileVersion> |
33 | 37 | <PackageLicenseFile>LICENSE</PackageLicenseFile>
|
34 | 38 | </PropertyGroup>
|
35 | 39 |
|
|
57 | 61 | <WarningLevel>7</WarningLevel>
|
58 | 62 | </PropertyGroup>
|
59 | 63 |
|
60 |
| - <PropertyGroup |
61 |
| - Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net5.0|AnyCPU'"> |
| 64 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net481|AnyCPU'"> |
62 | 65 | <WarningLevel>7</WarningLevel>
|
63 | 66 | </PropertyGroup>
|
64 | 67 |
|
65 | 68 | <PropertyGroup
|
66 |
| - Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net5.0|AnyCPU'"> |
| 69 | + Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net481|AnyCPU'"> |
67 | 70 | <WarningLevel>7</WarningLevel>
|
68 | 71 | </PropertyGroup>
|
69 | 72 |
|
70 | 73 | <PropertyGroup
|
71 |
| - Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug Optimize Size|net5.0|AnyCPU'"> |
| 74 | + Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug Optimize Size|net481|AnyCPU'"> |
72 | 75 | <WarningLevel>7</WarningLevel>
|
73 | 76 | </PropertyGroup>
|
74 | 77 |
|
75 | 78 | <PropertyGroup
|
76 |
| - Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release Optimize Size|net5.0|AnyCPU'"> |
| 79 | + Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release Optimize Size|net481|AnyCPU'"> |
77 | 80 | <WarningLevel>7</WarningLevel>
|
78 | 81 | </PropertyGroup>
|
79 | 82 |
|
|
117 | 120 | <WarningLevel>7</WarningLevel>
|
118 | 121 | </PropertyGroup>
|
119 | 122 |
|
120 |
| - <ItemGroup Condition=" '$(TargetFramework)' == 'net5.0' "> |
121 |
| - </ItemGroup> |
| 123 | + <PropertyGroup |
| 124 | + Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0|AnyCPU'"> |
| 125 | + <WarningLevel>7</WarningLevel> |
| 126 | + </PropertyGroup> |
| 127 | + |
| 128 | + <PropertyGroup |
| 129 | + Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0|AnyCPU'"> |
| 130 | + <WarningLevel>7</WarningLevel> |
| 131 | + </PropertyGroup> |
| 132 | + |
| 133 | + <PropertyGroup |
| 134 | + Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug Optimize Size|net8.0|AnyCPU'"> |
| 135 | + <WarningLevel>7</WarningLevel> |
| 136 | + </PropertyGroup> |
| 137 | + |
| 138 | + <PropertyGroup |
| 139 | + Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release Optimize Size|net8.0|AnyCPU'"> |
| 140 | + <WarningLevel>7</WarningLevel> |
| 141 | + </PropertyGroup> |
122 | 142 |
|
123 | 143 | <ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
|
124 | 144 | </ItemGroup>
|
125 | 145 |
|
126 | 146 | <ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' ">
|
127 | 147 | </ItemGroup>
|
128 | 148 |
|
| 149 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' "> |
| 150 | + </ItemGroup> |
| 151 | + |
129 | 152 | <ItemGroup>
|
130 | 153 | <None Include="..\..\LICENSE" Pack="true" PackagePath="" />
|
131 | 154 | <None Include="..\..\README.md" Pack="true" PackagePath="\" />
|
|
0 commit comments