Merge pull request #335 from wenwei-lin/master
update start backend service command in README.md
This commit is contained in:
commit
1d5a0a3b96
|
|
@ -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).
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue