From 6573a560995744af15819a8fc4fa7ce260f024ab Mon Sep 17 00:00:00 2001 From: ikpil Date: Wed, 24 Jan 2024 13:51:41 +0900 Subject: [PATCH] update BuildingAndIntegrating.md --- BuildingAndIntegrating.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BuildingAndIntegrating.md b/BuildingAndIntegrating.md index 6df1063..0a64a20 100644 --- a/BuildingAndIntegrating.md +++ b/BuildingAndIntegrating.md @@ -5,7 +5,7 @@ ### 🔨 Building with Command Prompt ```shell -dotnet build +dotnet build -c Release ``` ### 🔨 Building with an IDE @@ -21,7 +21,7 @@ dotnet build ### ▶️ Running With Command Prompt ```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 ...) @@ -45,7 +45,7 @@ dotnet run --project src/DotRecast.Recast.Demo --framework net8.0 ### 🧪 Testing With Command Prompt ```shell - dotnet test --framework net8.0 + dotnet test --framework net8.0 -c Release ``` ### 🧪 Testing With IDE