25 lines
539 B
ReStructuredText
25 lines
539 B
ReStructuredText
|
|
Quickstart
|
||
|
|
==========
|
||
|
|
|
||
|
|
Installation instructions
|
||
|
|
-------------------------
|
||
|
|
|
||
|
|
You can start BotSharp with NuGet or compile it in local development environment.
|
||
|
|
|
||
|
|
* Install lastest release using NuGet package management:
|
||
|
|
|
||
|
|
::
|
||
|
|
|
||
|
|
PM> Install-Package BotSharp.NLP
|
||
|
|
|
||
|
|
* Build in local development:
|
||
|
|
|
||
|
|
Make sure you have lastest .Net Core 2.x SDK installed. You can download SDK from https://www.microsoft.com/net/download .
|
||
|
|
|
||
|
|
::
|
||
|
|
|
||
|
|
PS C:\> git clone https://github.com/Oceania2018/BotSharp.NLP.git
|
||
|
|
PS C:\> cd BotSharp.NLP
|
||
|
|
PS C:\> dotnet build
|
||
|
|
|