Skip to content

Commit a1a93f8

Browse files
committed
Update projects to net8/net10 support
dotnet dependant packages updated
1 parent c5e9c02 commit a1a93f8

File tree

32 files changed

+137
-104
lines changed

32 files changed

+137
-104
lines changed

Extensions/TestCommon/TestCommon.csproj

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,29 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<DocumentationFile />
4-
<Configurations>Debug;Release;Debug-NET6;Release-NET6;Debug-NET7;Release-NET7;Debug-NET8;Release-NET8</Configurations>
4+
<Configurations>Debug;Release;Debug-NET8;Release-NET8;Debug-NET10;Release-NET10</Configurations>
55
</PropertyGroup>
66
<PropertyGroup>
77
<SignAssembly>true</SignAssembly>
88
<AssemblyOriginatorKeyFile>$(ExtensionsKeyFile)</AssemblyOriginatorKeyFile>
99
</PropertyGroup>
1010
<Import Project="$(SolutionDir)MSBuild\DataObjects.Net.InternalBuild.targets" />
11-
<ItemGroup Condition="'$(TargetFramework)'=='net6.0'">
12-
<PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.1" />
11+
<ItemGroup Condition="'$(TargetFramework)'=='net8.0'">
12+
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.1" />
13+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
14+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
15+
<PackageReference Include="Microsoft.Extensions.Configuration.Xml" Version="8.0.0" />
1316
</ItemGroup>
14-
<ItemGroup Condition="'$(TargetFramework)'=='net7.0' OR '$(TargetFramework)'=='net8.0'">
15-
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0" />
17+
<ItemGroup Condition="'$(TargetFramework)'=='net10.0'">
18+
<PackageReference Include="System.Configuration.ConfigurationManager" Version="10.0.0" />
19+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.0" />
20+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.0" />
21+
<PackageReference Include="Microsoft.Extensions.Configuration.Xml" Version="10.0.0" />
1622
</ItemGroup>
1723
<ItemGroup>
1824
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
1925
<PackageReference Include="NUnit" Version="3.13.2" />
2026
<PackageReference Include="NUnit3TestAdapter" Version="4.2.0" />
21-
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.0" />
22-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
23-
<PackageReference Include="Microsoft.Extensions.Configuration.Xml" Version="6.0.0" />
2427
</ItemGroup>
2528
<ItemGroup>
2629
<ProjectReference Include="..\..\Orm\Xtensive.Orm.Tests.Framework\Xtensive.Orm.Tests.Framework.csproj" />

Extensions/Xtensive.Orm.BulkOperations.Tests/Xtensive.Orm.BulkOperations.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<DocumentationFile />
4-
<Configurations>Debug;Release;Debug-NET6;Release-NET6;Debug-NET7;Release-NET7;Debug-NET8;Release-NET8</Configurations>
4+
<Configurations>Debug;Release;Debug-NET8;Release-NET8;Debug-NET10;Release-NET10</Configurations>
55
</PropertyGroup>
66
<Import Project="$(SolutionDir)MSBuild\DataObjects.Net.InternalBuild.targets" />
77
<ItemGroup>

Extensions/Xtensive.Orm.BulkOperations/Xtensive.Orm.BulkOperations.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<IsPackable>true</IsPackable>
44
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
5-
<Configurations>Debug;Release;Debug-NET6;Release-NET6;Debug-NET7;Release-NET7;Debug-NET8;Release-NET8</Configurations>
5+
<Configurations>Debug;Release;Debug-NET8;Release-NET8;Debug-NET10;Release-NET10</Configurations>
66
</PropertyGroup>
77
<PropertyGroup>
88
<PackageId>Xtensive.Orm.BulkOperations</PackageId>

Extensions/Xtensive.Orm.Localization.Tests/Xtensive.Orm.Localization.Tests.csproj

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<DocumentationFile />
4-
<Configurations>Debug;Release;Debug-NET6;Release-NET6;Debug-NET7;Release-NET7;Debug-NET8;Release-NET8</Configurations>
4+
<Configurations>Debug;Release;Debug-NET8;Release-NET8;Debug-NET10;Release-NET10</Configurations>
55
</PropertyGroup>
66
<Import Project="$(SolutionDir)MSBuild\DataObjects.Net.InternalBuild.targets" />
7+
<ItemGroup Condition="'$(TargetFramework)'=='net8.0'">
8+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
9+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
10+
<PackageReference Include="Microsoft.Extensions.Configuration.Xml" Version="8.0.0" />
11+
</ItemGroup>
12+
<ItemGroup Condition="'$(TargetFramework)'=='net10.0'">
13+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.0" />
14+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.0" />
15+
<PackageReference Include="Microsoft.Extensions.Configuration.Xml" Version="10.0.0" />
16+
</ItemGroup>
717
<ItemGroup>
818
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
919
<PackageReference Include="NUnit" Version="3.13.2" />
1020
<PackageReference Include="NUnit3TestAdapter" Version="4.2.0" />
11-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
12-
<PackageReference Include="Microsoft.Extensions.Configuration.Xml" Version="6.0.0" />
13-
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.0" />
1421
</ItemGroup>
1522
<ItemGroup>
1623
<ProjectReference Include="..\..\Orm\Xtensive.Orm.Tests.Framework\Xtensive.Orm.Tests.Framework.csproj" />

Extensions/Xtensive.Orm.Localization/Xtensive.Orm.Localization.csproj

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<IsPackable>true</IsPackable>
44
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
5-
<Configurations>Debug;Release;Debug-NET6;Release-NET6;Debug-NET7;Release-NET7;Debug-NET8;Release-NET8</Configurations>
5+
<Configurations>Debug;Release;Debug-NET8;Release-NET8;Debug-NET10;Release-NET10</Configurations>
66
</PropertyGroup>
77
<PropertyGroup>
88
<PackageId>Xtensive.Orm.Localization</PackageId>
@@ -29,15 +29,15 @@
2929
</ItemGroup>
3030
<ItemGroup>
3131
</ItemGroup>
32-
<ItemGroup Condition="'$(TargetFramework)'=='net5.0'">
33-
<PackageReference Include="System.Configuration.ConfigurationManager" Version="5.0.0" />
32+
<ItemGroup Condition="'$(TargetFramework)'=='net8.0'">
33+
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.1" />
34+
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
35+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.0" />
3436
</ItemGroup>
35-
<ItemGroup Condition="'$(TargetFramework)'=='net6.0'">
36-
<PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.1" />
37-
</ItemGroup>
38-
<ItemGroup>
39-
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
40-
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="6.0.0" />
37+
<ItemGroup Condition="'$(TargetFramework)'=='net10.0'">
38+
<PackageReference Include="System.Configuration.ConfigurationManager" Version="10.0.0" />
39+
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="10.0.0" />
40+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.0" />
4141
</ItemGroup>
4242

4343
</Project>

Extensions/Xtensive.Orm.Logging.NLog.Tests/Xtensive.Orm.Logging.NLog.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<DocumentationFile />
4-
<Configurations>Debug;Release;Debug-NET6;Release-NET6;Debug-NET7;Release-NET7;Debug-NET8;Release-NET8</Configurations>
4+
<Configurations>Debug;Release;Debug-NET8;Release-NET8;Debug-NET10;Release-NET10</Configurations>
55
</PropertyGroup>
66
<ItemGroup>
77
<None Include="App.config" />

Extensions/Xtensive.Orm.Logging.NLog/Xtensive.Orm.Logging.NLog.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<IsPackable>true</IsPackable>
44
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
5-
<Configurations>Debug;Release;Debug-NET6;Release-NET6;Debug-NET7;Release-NET7;Debug-NET8;Release-NET8</Configurations>
5+
<Configurations>Debug;Release;Debug-NET8;Release-NET8;Debug-NET10;Release-NET10</Configurations>
66
</PropertyGroup>
77
<PropertyGroup>
88
<PackageId>Xtensive.Orm.Logging.NLog</PackageId>

Extensions/Xtensive.Orm.Logging.log4net.Tests/Xtensive.Orm.Logging.log4net.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<DocumentationFile />
4-
<Configurations>Debug;Release;Debug-NET6;Release-NET6;Debug-NET7;Release-NET7;Debug-NET8;Release-NET8</Configurations>
4+
<Configurations>Debug;Release;Debug-NET8;Release-NET8;Debug-NET10;Release-NET10</Configurations>
55
</PropertyGroup>
66
<ItemGroup>
77
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />

Extensions/Xtensive.Orm.Logging.log4net/Xtensive.Orm.Logging.log4net.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<IsPackable>true</IsPackable>
44
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
5-
<Configurations>Debug;Release;Debug-NET6;Release-NET6;Debug-NET7;Release-NET7;Debug-NET8;Release-NET8</Configurations>
5+
<Configurations>Debug;Release;Debug-NET8;Release-NET8;Debug-NET10;Release-NET10</Configurations>
66
</PropertyGroup>
77
<PropertyGroup>
88
<PackageId>Xtensive.Orm.Logging.log4net</PackageId>

Extensions/Xtensive.Orm.Reprocessing.Tests/Xtensive.Orm.Reprocessing.Tests.csproj

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<DocumentationFile />
4-
<Configurations>Debug;Release;Debug-NET6;Release-NET6;Debug-NET7;Release-NET7;Debug-NET8;Release-NET8</Configurations>
4+
<Configurations>Debug;Release;Debug-NET8;Release-NET8;Debug-NET10;Release-NET10</Configurations>
55
</PropertyGroup>
66
<Import Project="$(SolutionDir)MSBuild\DataObjects.Net.InternalBuild.targets" />
7+
<ItemGroup Condition="'$(TargetFramework)'=='net8.0'">
8+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
9+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
10+
<PackageReference Include="Microsoft.Extensions.Configuration.Xml" Version="8.0.0" />
11+
</ItemGroup>
12+
<ItemGroup Condition="'$(TargetFramework)'=='net10.0'">
13+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.0" />
14+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.0" />
15+
<PackageReference Include="Microsoft.Extensions.Configuration.Xml" Version="10.0.0" />
16+
</ItemGroup>
717
<ItemGroup>
818
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
919
<PackageReference Include="NUnit" Version="3.13.2" />
1020
<PackageReference Include="NUnit3TestAdapter" Version="4.2.0" />
11-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
12-
<PackageReference Include="Microsoft.Extensions.Configuration.Xml" Version="6.0.0" />
13-
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.0" />
1421
</ItemGroup>
1522
<ItemGroup>
1623
<ProjectReference Include="..\..\Orm\Xtensive.Orm.Tests.Framework\Xtensive.Orm.Tests.Framework.csproj" />

0 commit comments

Comments
 (0)