diff --git a/docs/howto/skills/csharp/addskillsupportforv4bot.md b/docs/howto/skills/csharp/addskillsupportforv4bot.md index 5ea92be6f6..2eb187db79 100644 --- a/docs/howto/skills/csharp/addskillsupportforv4bot.md +++ b/docs/howto/skills/csharp/addskillsupportforv4bot.md @@ -17,11 +17,11 @@ Creating a Bot Framework Bot through the [Virtual Assistant template](/docs/virt ## Libraries -- Add `Microsoft.Bot.Builder.Solutions` and `Microsoft.Bot.Builder.Skills` Nuget libraries to your solution +- Add `Microsoft.Bot.Builder.Solutions` and `Microsoft.Bot.Builder.Skills` NuGet libraries to your solution ## Skill Configuration -The 'Skills' nuget provides a `SkillManifest` type that describes a Skill. You Bot should maintain a collection of registered Skills typically serialised into a JSON configuration file. The Virtual Assistant template uses a `skills.json` file for this purpose. +The 'Skills' nuget provides a `SkillManifest` type that describes a Skill. Your bot should maintain a collection of registered Skills typically serialised into a JSON configuration file. The Virtual Assistant template uses a `skills.json` file for this purpose. As part of your Configuration processing you should construct a collection of registered Skills by deserializing this file, for example: ``` @@ -104,4 +104,4 @@ else { // Your normal intent routing logic } -``` \ No newline at end of file +```