Skip to content

Commit 07458c0

Browse files
Merge pull request #284 from CodebreakerApp/283-cosmos-lib-net-9
283 cosmos lib net 9
2 parents 84a428b + 58feda3 commit 07458c0

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.github/workflows/codebreaker-lib-cosmos-stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup .NET
2323
uses: actions/setup-dotnet@v4
2424
with:
25-
dotnet-version: 8.0.x
25+
dotnet-version: 9.0.x
2626

2727
- name: Build the library
2828
run: dotnet build -c Release ${{ env.solutionfile-path }}

.github/workflows/codebreaker-lib-cosmos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
version-offset: 10
2323
solutionfile-path: src/Codebreaker.Backend.Cosmos.sln
2424
projectfile-path: src/services/common/Codebreaker.Data.Cosmos/Codebreaker.Data.Cosmos.csproj
25-
dotnet-version: '8.0.x'
25+
dotnet-version: '9.0.x'
2626
artifact-name: codebreaker-cosmos
2727
branch-name: main
2828

.github/workflows/codebreaker-lib-sqlserver-stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup .NET
2323
uses: actions/setup-dotnet@v4
2424
with:
25-
dotnet-version: 8.0.x
25+
dotnet-version: 9.0.x
2626

2727
- name: Build the library
2828
run: dotnet build -c Release ${{ env.solutionfile-path }}

.github/workflows/codebreaker-lib-sqlserver.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
version-offset: 10
2323
solutionfile-path: src/Codebreaker.Backend.SqlServer.sln
2424
projectfile-path: src/services/common/Codebreaker.Data.SqlServer/Codebreaker.Data.SqlServer.csproj
25-
dotnet-version: '8.0.x'
25+
dotnet-version: '9.0.x'
2626
artifact-name: codebreaker-sqlserver
2727
branch-name: main
2828

src/services/common/Codebreaker.Data.Cosmos/Codebreaker.Data.Cosmos.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<PackageId>CNinnovation.Codebreaker.Cosmos</PackageId>
5-
<TargetFrameworks>net8.0</TargetFrameworks>
5+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<PackageTags>
@@ -14,11 +14,12 @@
1414
</Description>
1515
<PackageReadmeFile>readme.md</PackageReadmeFile>
1616
<PackageIcon>codebreaker.jpeg</PackageIcon>
17+
<Version>3.8.0</Version>
1718
</PropertyGroup>
1819

1920
<ItemGroup>
20-
<PackageReference Include="CNinnovation.Codebreaker.BackendModels" Version="3.8.0-preview.1.32" />
21-
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="8.0.8" />
21+
<PackageReference Include="CNinnovation.Codebreaker.BackendModels" Version="3.8.0" />
22+
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="9.0.0" />
2223
</ItemGroup>
2324

2425
<ItemGroup>

0 commit comments

Comments
 (0)