update BuildingAndIntegrating.md

This commit is contained in:
ikpil 2024-01-24 13:51:41 +09:00
parent f3eab3e30f
commit 6573a56099
1 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
### 🔨 Building with Command Prompt ### 🔨 Building with Command Prompt
```shell ```shell
dotnet build dotnet build -c Release
``` ```
### 🔨 Building with an IDE ### 🔨 Building with an IDE
@ -21,7 +21,7 @@ dotnet build
### ▶️ Running With Command Prompt ### ▶️ Running With Command Prompt
```shell ```shell
dotnet run --project src/DotRecast.Recast.Demo --framework net8.0 dotnet run --project src/DotRecast.Recast.Demo --framework net8.0 -c Release
``` ```
### ▶️ Running With IDE (ex. Visual Studio 2022 or Rider ...) ### ▶️ Running With IDE (ex. Visual Studio 2022 or Rider ...)
@ -45,7 +45,7 @@ dotnet run --project src/DotRecast.Recast.Demo --framework net8.0
### 🧪 Testing With Command Prompt ### 🧪 Testing With Command Prompt
```shell ```shell
dotnet test --framework net8.0 dotnet test --framework net8.0 -c Release
``` ```
### 🧪 Testing With IDE ### 🧪 Testing With IDE