3ffd4d2704
Bumps [System.IdentityModel.Tokens.Jwt](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet) from 5.1.2 to 5.7.0. - [Release notes](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/releases) - [Changelog](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/blob/dev/CHANGELOG.md) - [Commits](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/commits/5.7.0) --- updated-dependencies: - dependency-name: System.IdentityModel.Tokens.Jwt dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
---|---|---|
.. | ||
CSharp | ||
Node | ||
README.md |
README.md
Bot Framework Migration from V3 to V4
Overview
This area contains samples for migration workflows from Bot Framework V3 SDK to Bot Framework V4 SDK for .NET and JS.
Goals of this work
In some cases, since the V4 SDK contains substantial improvements that are not compatible with V3, some migration may require potential re-write or substantial effort. This section contains examples and best practices to support Migration documentation.
Samples
CSharp
-
- This V3 bot was taken from the Azure with Intelligent Apps example. This is the bot we've used to demonstrate migration concepts. The V3 source code is here for reference.
-
ContosoHelpdeskChatBot-V4NetFramework
- Example of ContosoHelpdeskChatBot migrated to use Bot Builder V4 targeting netframework.
-
ContosoHelpdeskChatBot-V4NetCore
- Example of ContosoHelpdeskChatBot migrated to use Bot Builder V4 targeting netcoreapp2.1.
-
- Example demonstrating saving user scoped information (User State) into Azure Table, CosmosDb and Azure Sql using Microsoft.Bot.Builder.Azure
-
- The V4StateBot solution contains to projects:
- Bot.Builder.Azure.V3V4 library contains code ported from Microsoft.Bot.Builder.Azure but targeting netcoreapp2.1 This library can be used to create a v4 storage provider that wraps a v3 store.
- V4StateBot is an example demonstrating using the Bot.Builder.Azure.V3V4 library to connect to v3 storage providers.
- The V4StateBot solution contains to projects:
Node
-
- This V3 bot was taken from the v3-sdk-samples branch. This is the bot we've used to demonstrate migration concepts. The V3 source code is here for reference.
-
- Example of core-MultiDialogs migrated to use Bot Builder V4.