From cfaf3c2fa826afcb750cd729599aeeee08d31349 Mon Sep 17 00:00:00 2001 From: Alex Rehnby-Martin Date: Fri, 5 Sep 2025 10:34:10 -0700 Subject: [PATCH 1/2] Update developer md Signed-off-by: Alex Rehnby-Martin --- DEVELOPER.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/DEVELOPER.md b/DEVELOPER.md index 525137d..ec74f13 100644 --- a/DEVELOPER.md +++ b/DEVELOPER.md @@ -48,12 +48,11 @@ cargo install --locked cargo-zigbuild **.Net** -It is recommended to visit https://dotnet.microsoft.com/en-us/download/dotnet to download .Net installer. +It is recommended to visit https://dotnet.microsoft.com/en-us/download/dotnet to download .Net installer. To build and run the project, both .Net 8 and 9 are required. You can also use a package manager to install the .Net SDK: ```bash -brew install dotnet@6 # MacOS -sudo apt-get install dotnet6 # Linux +sudo apt-get install dotnet8 dotnet9 # Linux ``` **Protoc installation** @@ -95,20 +94,19 @@ Before starting this step, make sure you've installed all software requirements. 1. Clone the repository ```bash -git clone https://github.com/valkey-io/valkey-glide.git -cd valkey-glide +git clone https://github.com/valkey-io/valkey-glide-csharp.git +cd valkey-glide-csharp ``` 2. Build the C# wrapper ```bash -cd csharp dotnet build ``` 3. Run tests -Run test suite from `csharp` directory: +Run test suite: ```bash # Run tests on supported dotnet versions sequentially From a27d4b8c6e9e1114cc48f976ea97bd1b6990b55b Mon Sep 17 00:00:00 2001 From: Alex Rehnby-Martin Date: Thu, 11 Sep 2025 09:43:09 -0700 Subject: [PATCH 2/2] Update DEVELOPER.md Co-authored-by: Joseph Brinkman Signed-off-by: Alex Rehnby-Martin --- DEVELOPER.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPER.md b/DEVELOPER.md index ec74f13..be07e8c 100644 --- a/DEVELOPER.md +++ b/DEVELOPER.md @@ -101,7 +101,7 @@ cd valkey-glide-csharp 2. Build the C# wrapper ```bash -dotnet build +task build ``` 3. Run tests