Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codebreaker-lib-cosmos-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x

- name: Build the library
run: dotnet build -c Release ${{ env.solutionfile-path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codebreaker-lib-cosmos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
version-offset: 10
solutionfile-path: src/Codebreaker.Backend.Cosmos.sln
projectfile-path: src/services/common/Codebreaker.Data.Cosmos/Codebreaker.Data.Cosmos.csproj
dotnet-version: '8.0.x'
dotnet-version: '9.0.x'
artifact-name: codebreaker-cosmos
branch-name: main

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codebreaker-lib-sqlserver-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x

- name: Build the library
run: dotnet build -c Release ${{ env.solutionfile-path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codebreaker-lib-sqlserver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
version-offset: 10
solutionfile-path: src/Codebreaker.Backend.SqlServer.sln
projectfile-path: src/services/common/Codebreaker.Data.SqlServer/Codebreaker.Data.SqlServer.csproj
dotnet-version: '8.0.x'
dotnet-version: '9.0.x'
artifact-name: codebreaker-sqlserver
branch-name: main

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<PackageId>CNinnovation.Codebreaker.Cosmos</PackageId>
<TargetFrameworks>net8.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageTags>
Expand All @@ -14,11 +14,12 @@
</Description>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageIcon>codebreaker.jpeg</PackageIcon>
<Version>3.8.0</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CNinnovation.Codebreaker.BackendModels" Version="3.8.0-preview.1.32" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="8.0.8" />
<PackageReference Include="CNinnovation.Codebreaker.BackendModels" Version="3.8.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="9.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down