Skip to content

Commit

Permalink
Merge pull request #284 from CodebreakerApp/283-cosmos-lib-net-9
Browse files Browse the repository at this point in the history
283 cosmos lib net 9
  • Loading branch information
christiannagel authored Nov 16, 2024
2 parents 84a428b + 58feda3 commit 07458c0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
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

0 comments on commit 07458c0

Please sign in to comment.