|
4 | 4 | <!-- Used by Python script to narrow down the specified target frameworks to test, and avoid downloading all supported SDKs --> |
5 | 5 | <TargetFrameworks>$(PERFLAB_TARGET_FRAMEWORKS)</TargetFrameworks> |
6 | 6 | <!-- Supported target frameworks --> |
7 | | - <TargetFrameworks Condition="'$(TargetFrameworks)' == '' AND '$(OS)' == 'Windows_NT'">net461;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks> |
8 | | - <TargetFrameworks Condition="'$(TargetFrameworks)' == ''">netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks> |
| 7 | + <TargetFrameworks Condition="'$(TargetFrameworks)' == '' AND '$(OS)' == 'Windows_NT'">net462;netcoreapp3.1;net6.0;net7.0;net8.0</TargetFrameworks> |
| 8 | + <TargetFrameworks Condition="'$(TargetFrameworks)' == ''">netcoreapp3.1;net6.0;net7.0;net8.0</TargetFrameworks> |
9 | 9 | <NoWarn>$(NoWarn);CS8002</NoWarn> |
10 | 10 | <!-- Suppress binaryformatter obsolete warning --> |
11 | 11 | <NoWarn>$(NoWarn);SYSLIB0011</NoWarn> |
|
29 | 29 | <SystemVersion>4.7.1</SystemVersion> |
30 | 30 | </PropertyGroup> |
31 | 31 | </When> |
32 | | - <When Condition="'$(TargetFramework)' == 'net5.0'"> |
| 32 | + <When Condition="'$(TargetFramework)' == 'net6.0'"> |
33 | 33 | <PropertyGroup> |
34 | | - <ExtensionsVersion>5.0.0</ExtensionsVersion> |
35 | | - <SystemVersion>5.0.0</SystemVersion> |
| 34 | + <ExtensionsVersion>6.0.0</ExtensionsVersion> |
| 35 | + <SystemVersion>6.0.0</SystemVersion> |
36 | 36 | </PropertyGroup> |
37 | 37 | </When> |
38 | 38 | <Otherwise> |
39 | | - <!-- when comparing against Full .NET Framework we are usually interested in CLR differences, so net461 belongs to this block --> |
| 39 | + <!-- when comparing against Full .NET Framework we are usually interested in CLR differences, so net462 belongs to this block --> |
40 | 40 | <PropertyGroup> |
41 | | - <ExtensionsVersion>6.0.0</ExtensionsVersion> |
42 | | - <SystemVersion>6.0.0</SystemVersion> |
| 41 | + <ExtensionsVersion>7.0.0</ExtensionsVersion> |
| 42 | + <SystemVersion>7.0.0</SystemVersion> |
43 | 43 | </PropertyGroup> |
44 | 44 | </Otherwise> |
45 | 45 | </Choose> |
|
62 | 62 | <PackageReference Include="System.Drawing.Common" Version="$(SystemVersion)" /> |
63 | 63 | <PackageReference Include="System.Formats.Cbor" Version="$(SystemVersion)" Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp' And '$(_TargetFrameworkVersionWithoutV)' >= '5.0'" /> |
64 | 64 | <PackageReference Include="System.IO.Pipelines" Version="$(SystemVersion)" /> |
65 | | - <PackageReference Include="System.Memory" Version="4.5.4" /> |
| 65 | + <PackageReference Include="System.Memory" Version="4.5.5" /> |
66 | 66 | <PackageReference Include="System.Numerics.Vectors" Version="4.5.0" /> |
67 | 67 | <PackageReference Include="System.Runtime.Serialization.Formatters" Version="4.3.0" /> |
68 | 68 | <PackageReference Include="System.Runtime.Serialization.Json" Version="4.3.0" /> |
|
0 commit comments