Merge pull request #335 from wenwei-lin/master

update start backend service command in README.md
This commit is contained in:
C. Oceania 2024-03-08 19:35:12 -06:00 committed by GitHub
commit 1d5a0a3b96
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View file

@ -36,7 +36,10 @@ It's written in C# running on .Net Core that is full cross-platform framework, t
```sh
PS D:\> git clone https://github.com/dotnetcore/BotSharp
PS D:\> cd BotSharp
PS D:\BotSharp\> dotnet run -p .\src\WebStarter
# For Windows
PS D:\BotSharp\> dotnet run --project .\src\WebStarter\WebStarter.csproj -p SolutionName=BotSharp
# For Linux
$ dotnet run --project ./src/WebStarter/WebStarter.csproj -p SolutionName=BotSharp
```
2. Run Admin UI project, reference to [BotSharp UI](https://github.com/SciSharp/BotSharp-UI).

View file

@ -13,7 +13,7 @@ cd BotSharp
dotnet run --project .\src\WebStarter\WebStarter.csproj -p SolutionName=PizzaBot
# Use BotSharp to include all dependent projects with latest source code
dotnet run --project .\src\WebStarter
dotnet run --project .\src\WebStarter\WebStarter.csproj -p SolutionName=BotSharp
```
Here you go, you will see this running screen.