Skip to content

Commit 6112a48

Browse files
committed
moving to dotnet 10
1 parent be9dc28 commit 6112a48

4 files changed

Lines changed: 21 additions & 21 deletions

File tree

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "9.0.305",
3+
"version": "10.0.103",
44
"rollForward": "latestFeature"
55
}
66
}

src/CodeChavez.Repository.Pattern.MongoDB/CodeChavez.Repository.Pattern.MongoDB.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
88
<PackageId>CodeChavez.Repository.Pattern.MongoDB</PackageId>
99
<Title>CodeChavez Repository Pattern MongoDB Library</Title>
1010
<Authors>Victor A Chavez</Authors>
1111
<Product>CodeChavez.Repository.Pattern.MongoDB</Product>
12-
<Version>9.0.2</Version>
12+
<Version>10.0.0-preview1</Version>
1313
<Copyright>2020-2025</Copyright>
1414
<Description>Has some useful extension and utilities that allow for every day development</Description>
1515
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
@@ -21,13 +21,13 @@
2121
</PropertyGroup>
2222

2323
<ItemGroup>
24-
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="9.0.9" />
25-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.9">
24+
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="10.0.5" />
25+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.5">
2626
<PrivateAssets>all</PrivateAssets>
2727
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2828
</PackageReference>
29-
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.9" />
30-
<PackageReference Include="MongoDB.EntityFrameworkCore" Version="9.0.1" />
29+
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.5" />
30+
<PackageReference Include="MongoDB.EntityFrameworkCore" Version="10.0.1" />
3131
</ItemGroup>
3232

3333
<ItemGroup>

src/CodeChavez.Repository.Pattern.Postgres/CodeChavez.Repository.Pattern.Postgres.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
88
<PackageId>CodeChavez.Repository.Pattern.Postgres</PackageId>
99
<Title>CodeChavez Repository Pattern Postgres Library</Title>
1010
<Authors>Victor A Chavez</Authors>
1111
<Product>CodeChavez.Repository.Pattern.Postgres</Product>
12-
<Version>9.0.2</Version>
12+
<Version>10.0.0-preview1</Version>
1313
<Copyright>2020-2025</Copyright>
1414
<Description>Has some useful extension and utilities that allow for every day development</Description>
1515
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
@@ -21,18 +21,18 @@
2121
</PropertyGroup>
2222

2323
<ItemGroup>
24-
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="9.0.9" />
25-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.9">
24+
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="10.0.5" />
25+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.5">
2626
<PrivateAssets>all</PrivateAssets>
2727
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2828
</PackageReference>
29-
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.9" />
30-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.9">
29+
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.5" />
30+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.5">
3131
<PrivateAssets>all</PrivateAssets>
3232
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3333
</PackageReference>
34-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
35-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite" Version="9.0.4" />
34+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.1" />
35+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite" Version="10.0.1" />
3636
</ItemGroup>
3737

3838
<ItemGroup>

src/CodeChavez.Repository.Pattern/CodeChavez.Repository.Pattern.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
88
<PackageId>CodeChavez.Repository.Pattern</PackageId>
99
<Title>CodeChavez Repository Pattern Library</Title>
1010
<Authors>Victor A Chavez</Authors>
1111
<Product>CodeChavez.Repository.Pattern</Product>
12-
<Version>9.0.2</Version>
12+
<Version>10.0.0</Version>
1313
<Copyright>2020-2025</Copyright>
1414
<Description>Has some useful extension and utilities that allow for every day development</Description>
1515
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
@@ -26,10 +26,10 @@
2626
</ItemGroup>
2727

2828
<ItemGroup>
29-
<PackageReference Include="CodeChavez.Common" Version="9.0.2" />
30-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.9" />
31-
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.9" />
32-
<PackageReference Include="MongoDB.Bson" Version="3.5.0" />
29+
<PackageReference Include="CodeChavez.Common" Version="10.0.0" />
30+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.5" />
31+
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="10.0.5" />
32+
<PackageReference Include="MongoDB.Bson" Version="3.7.1" />
3333
</ItemGroup>
3434

3535
</Project>

0 commit comments

Comments
 (0)