update start backend service command in README.md

This commit is contained in:
Wenwei Lin 2024-03-09 07:55:19 +08:00
parent 73f9f6d1e5
commit c3f34b4b03

View file

@ -36,7 +36,10 @@ It's written in C# running on .Net Core that is full cross-platform framework, t
```sh ```sh
PS D:\> git clone https://github.com/dotnetcore/BotSharp PS D:\> git clone https://github.com/dotnetcore/BotSharp
PS D:\> cd 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). 2. Run Admin UI project, reference to [BotSharp UI](https://github.com/SciSharp/BotSharp-UI).