Skip to content

Commit 1d5a0a3

Browse files
authored
Merge pull request #335 from wenwei-lin/master
update start backend service command in README.md
2 parents ec4ec08 + caff539 commit 1d5a0a3

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ It's written in C# running on .Net Core that is full cross-platform framework, t
3636
```sh
3737
PS D:\> git clone https://github.com/dotnetcore/BotSharp
3838
PS D:\> cd BotSharp
39-
PS D:\BotSharp\> dotnet run -p .\src\WebStarter
39+
# For Windows
40+
PS D:\BotSharp\> dotnet run --project .\src\WebStarter\WebStarter.csproj -p SolutionName=BotSharp
41+
# For Linux
42+
$ dotnet run --project ./src/WebStarter/WebStarter.csproj -p SolutionName=BotSharp
4043
```
4144

4245
2. Run Admin UI project, reference to [BotSharp UI](https://github.com/SciSharp/BotSharp-UI).

docs/quick-start/get-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cd BotSharp
1313
dotnet run --project .\src\WebStarter\WebStarter.csproj -p SolutionName=PizzaBot
1414

1515
# Use BotSharp to include all dependent projects with latest source code
16-
dotnet run --project .\src\WebStarter
16+
dotnet run --project .\src\WebStarter\WebStarter.csproj -p SolutionName=BotSharp
1717
```
1818

1919
Here you go, you will see this running screen.

0 commit comments

Comments
 (0)