Skip to content

Commit 56fb843

Browse files
committed
readme
1 parent 9102e6e commit 56fb843

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# GraphRAG for .NET
22

3-
GraphRAG for .NET is a ground-up port of Microsofts GraphRAG reference implementation to the modern .NET 9 stack. The port keeps parity with the original Python pipelines while embracing native .NET idioms—dependency injection, logging abstractions, async I/O, and strongly-typed configuration.
3+
GraphRAG for .NET is a ground-up port of Microsoft's GraphRAG reference implementation to the modern .NET 10 stack. The port keeps parity with the original Python pipelines while embracing native .NET idioms—dependency injection, logging abstractions, async I/O, and strongly-typed configuration.
44

55
> ℹ️ The upstream Python code remains available under [`submodules/graphrag-python`](submodules/graphrag-python) for side-by-side reference. Treat it as read-only unless a task explicitly targets the submodule.
66
@@ -42,7 +42,7 @@ graphrag/
4242

4343
| Requirement | Notes |
4444
|-------------|-------|
45-
| [.NET SDK 9.0](https://dotnet.microsoft.com/download/dotnet/9.0) | The solution targets `net9.0`. Use the in-repo [`dotnet-install.sh`](dotnet-install.sh) helper on CI. |
45+
| [.NET SDK 10.0](https://dotnet.microsoft.com/download/dotnet/10.0) | The solution targets `net10.0`. Use the in-repo [`dotnet-install.sh`](dotnet-install.sh) helper on CI. |
4646
| Docker Desktop / compatible runtime | Required for Testcontainers-backed integration tests (Neo4j & Apache AGE/PostgreSQL). |
4747
| (Optional) Azure Cosmos DB Emulator | Set `COSMOS_EMULATOR_CONNECTION_STRING` to enable Cosmos-specific tests. |
4848

@@ -57,9 +57,9 @@ graphrag/
5757
git submodule update --init --recursive
5858
```
5959

60-
2. **Install .NET 9 if needed**
60+
2. **Install .NET 10 if needed**
6161
```bash
62-
./dotnet-install.sh --version 9.0.100
62+
./dotnet-install.sh --version 10.0.100
6363
export PATH="$HOME/.dotnet:$PATH"
6464
```
6565

0 commit comments

Comments
 (0)