Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Support for .Net 9 #919

Open
wants to merge 38 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
ab4517d
net9 changes
TedHartMS Jan 8, 2025
ed7cd27
Merge remote-tracking branch 'origin/main' into tedhar/net9
TedHartMS Jan 8, 2025
5f996a0
Collection expression fix
TedHartMS Jan 9, 2025
8b3d966
Fixing SYSLIB0057
TalZaccai Jan 9, 2025
44874e1
Removing ServicePointManager
TalZaccai Jan 9, 2025
2340ba5
Temporary fix for RedisCallErrors test failing in .net9
TalZaccai Jan 16, 2025
0cb7ff7
merging with latest main
TalZaccai Jan 17, 2025
8059a3a
some fixes
TalZaccai Jan 17, 2025
80b3dc4
Merge branch 'main' into tedhar/net9
TalZaccai Jan 17, 2025
84cc8cd
Added .net90 to CI and the Nightly GitHub Action
darrenge Jan 22, 2025
d0d948a
Fixed Garnet Worker to be both .net80 and .net90 and updated ADO pipe…
darrenge Jan 22, 2025
121d14f
Updated Tsav CI that runs in ADO when mirrored
darrenge Jan 22, 2025
faae98a
Fix to RedisCallErrors
TalZaccai Jan 23, 2025
2b67210
test
TalZaccai Jan 23, 2025
3e3ed56
fix
TalZaccai Jan 23, 2025
d94a323
Skipping RedisCallErrors test
TalZaccai Jan 23, 2025
b49a1b5
Merge branch 'tedhar/net9' of https://github.com/microsoft/garnet int…
darrenge Jan 23, 2025
a74e664
Reverting ignored test
TalZaccai Jan 23, 2025
0214669
Updating CI
TalZaccai Jan 23, 2025
ebd5f05
CI fix
TalZaccai Jan 23, 2025
3fc3ffe
Ignoring RedisCallErrors test when environment variable is not set
TalZaccai Jan 23, 2025
027fe0e
Added net90 to the external release pipeline. Required changed to pub…
darrenge Jan 24, 2025
99621f7
Merge branch 'tedhar/net9' of https://github.com/microsoft/garnet int…
darrenge Jan 24, 2025
0d668ec
Fixed bug in compressed file directory
darrenge Jan 24, 2025
2cedd73
Another try on fixing the destination directory issue
darrenge Jan 24, 2025
c82efda
Added CodeQL.yml which is custom so it works with net90 as well. Upda…
darrenge Jan 29, 2025
064ac3f
merging with latest main
TalZaccai Jan 30, 2025
37e1cbd
Set RunTImes to only be packed once since they are C++ and not depend…
darrenge Jan 30, 2025
078c297
Fixed broken merge
TalZaccai Jan 30, 2025
ffff185
Merge branch 'tedhar/net9' of https://github.com/microsoft/garnet int…
TalZaccai Jan 30, 2025
039499f
Added WorkFlow dispatch and commented out net90
darrenge Jan 30, 2025
9f3b2a6
Added net90 to CodeQL
darrenge Jan 30, 2025
ff9e9e4
Enabled the Create GH Release and Push Nuget packages tasks so it is …
darrenge Jan 30, 2025
939e97a
Merge branch 'main' into tedhar/net9
darrenge Jan 30, 2025
3dd2172
Merge branch 'main' into tedhar/net9
darrenge Jan 31, 2025
a729bf2
merging with latest main
TalZaccai Feb 18, 2025
9cbe7f5
format
TalZaccai Feb 18, 2025
1554339
format
TalZaccai Feb 18, 2025
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
Prev Previous commit
Next Next commit
Fixed Garnet Worker to be both .net80 and .net90 and updated ADO pipe…
…lines to use net9.0
darrenge committed Jan 22, 2025
commit d0d948a6a3e1d81aa715aad505c09769890f73a0
4 changes: 4 additions & 0 deletions .azure/pipelines/azure-pipelines-compliance.yml
Original file line number Diff line number Diff line change
@@ -21,6 +21,10 @@ jobs:
displayName: 'Use .NET Core sdk 8.0.x'
inputs:
version: 8.0.x
- task: UseDotNet@2
displayName: 'Use .NET Core sdk 9.0.x'
inputs:
version: 9.0.x
- task: NuGetToolInstaller@1
displayName: Nuget Tool Installer
inputs:
11 changes: 11 additions & 0 deletions .azure/pipelines/azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -31,6 +31,12 @@ jobs:
packageType: 'sdk'
version: '8.0.x'

- task: UseDotNet@2
displayName: Use .NET 9.0
inputs:
packageType: 'sdk'
version: '9.0.x'

- task: NodeTool@0
displayName: Node Tool
inputs:
@@ -118,6 +124,11 @@ jobs:
inputs:
packageType: 'sdk'
version: '8.0.x'
- task: UseDotNet@2
displayName: Use .NET 9.0
inputs:
packageType: 'sdk'
version: '9.0.x'

- bash: |
sudo npm install -g azurite
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -59,7 +59,6 @@ jobs:
- name: Check style format
run: dotnet format Garnet.sln --no-restore --verify-no-changes --verbosity diagnostic


format-tsavorite:
name: Format Tsavorite
needs: changes
2 changes: 1 addition & 1 deletion hosting/Windows/Garnet.worker/Garnet.worker.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Worker">

<PropertyGroup>
<TargetFramework>net8.0;net9.0</TargetFramework>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>