diff --git a/Demo/Demo.csproj b/Demo/Demo.csproj
index a20c003..f87b32e 100644
--- a/Demo/Demo.csproj
+++ b/Demo/Demo.csproj
@@ -6,7 +6,7 @@
Exe
- net9.0
+ net10.0
enable
enable
diff --git a/RuleEngine.Tests/RuleEngine.Tests.csproj b/RuleEngine.Tests/RuleEngine.Tests.csproj
index 27b79de..a38fd04 100644
--- a/RuleEngine.Tests/RuleEngine.Tests.csproj
+++ b/RuleEngine.Tests/RuleEngine.Tests.csproj
@@ -1,7 +1,7 @@
- net9.0
+ net10.0
enable
enable
false
diff --git a/RuleEngine/RuleEngine.csproj b/RuleEngine/RuleEngine.csproj
index 45176e3..e5c0054 100644
--- a/RuleEngine/RuleEngine.csproj
+++ b/RuleEngine/RuleEngine.csproj
@@ -1,7 +1,7 @@
- net9.0
+ net10.0
enable
enable
diff --git a/docs/macos-build-deploy.md b/docs/macos-build-deploy.md
index de4d04b..e669f6d 100644
--- a/docs/macos-build-deploy.md
+++ b/docs/macos-build-deploy.md
@@ -9,7 +9,7 @@
| 依赖 | 版本 | 说明 |
|------|------|------|
-| .NET SDK | **9.0** | 编译和运行 |
+| .NET SDK | **10.0** | 编译和运行 |
| YamlDotNet | 18.1.0 | NuGet 自动拉取,无需手动安装 |
| xUnit | 2.9.2 | 测试框架,NuGet 自动拉取 |
| Git | 任意 | 拉取代码 |
@@ -18,7 +18,7 @@
```bash
# 方式一:官网下载安装
-# https://dotnet.microsoft.com/zh-cn/download/dotnet/9.0
+# https://dotnet.microsoft.com/zh-cn/download/dotnet/10.0
# 选 macOS Arm64 (Apple Silicon) 或 x64 (Intel)
# 方式二:Homebrew
@@ -72,12 +72,12 @@ dotnet build
dotnet build -c Release
# 编译通过后输出:
-# RuleEngine -> RuleEngine/bin/Debug/net9.0/RuleEngine.dll
-# Demo -> Demo/bin/Debug/net9.0/Demo
-# RuleEngine.Tests -> RuleEngine.Tests/bin/Debug/net9.0/RuleEngine.Tests.dll
+# RuleEngine -> RuleEngine/bin/Debug/net10.0/RuleEngine.dll
+# Demo -> Demo/bin/Debug/net10.0/Demo
+# RuleEngine.Tests -> RuleEngine.Tests/bin/Debug/net10.0/RuleEngine.Tests.dll
```
-编译产物在各自项目的 `bin/Debug/net9.0/` 下。Demo 的可执行文件是 `Demo/bin/Debug/net9.0/Demo`(macOS 原生二进制)。
+编译产物在各自项目的 `bin/Debug/net10.0/` 下。Demo 的可执行文件是 `Demo/bin/Debug/net10.0/Demo`(macOS 原生二进制)。
---