Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion docs/quick-start/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down