Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.
Merged
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
6 changes: 3 additions & 3 deletions docs/howto/skills/csharp/addskillsupportforv4bot.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
```
Expand Down Expand Up @@ -104,4 +104,4 @@ else
{
// Your normal intent routing logic
}
```
```