diff --git a/.gitignore b/.gitignore index 33c156bf6e..028f2c2a46 100644 --- a/.gitignore +++ b/.gitignore @@ -290,6 +290,7 @@ PublishProfiles/ appsettings.local.json appsettings.Development.json +!generators/**/appsettings.Development.json **/*/.luisrc /.vscode/launch.json /outputpackages diff --git a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/Microsoft.BotFramework.CSharp.CoreBot.nuspec b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/Microsoft.BotFramework.CSharp.CoreBot.nuspec index 7c49030087..02a17ffecc 100644 --- a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/Microsoft.BotFramework.CSharp.CoreBot.nuspec +++ b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/Microsoft.BotFramework.CSharp.CoreBot.nuspec @@ -2,7 +2,7 @@ Microsoft.Bot.Framework.CSharp.CoreBot - 4.15.2 + 4.16.0 A .NET Core Template for Microsoft Bot Framework v4. Will let you quickly set up a conversational AI bot with core features every bot is likely to use. diff --git a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/content/.template.config/template.json b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/content/.template.config/template.json index 09b7f61510..4c5c3eee34 100644 --- a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/content/.template.config/template.json +++ b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/content/.template.config/template.json @@ -12,7 +12,7 @@ "defaultName": "CoreBot", "groupIdentity": "Microsoft.BotFramework.CSharp.CoreBot", "identity": "Microsoft.BotFramework.CSharp.CoreBot", - "name": "Bot Framework Core Bot (v4.15.2)", + "name": "Bot Framework Core Bot (v4.16.0)", "preferNameDirectory": true, "sourceName": "Microsoft.BotFramework.CoreBot", "shortName": "corebot", @@ -26,7 +26,7 @@ "type": "generated", "generator": "constant", "parameters": { - "value": "v4.15.2" + "value": "v4.16.0" }, "replaces": "__vX.X.X__" }, diff --git a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/content/CoreBot.Tests/CoreBot.Tests.csproj b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/content/CoreBot.Tests/CoreBot.Tests.csproj index a12175bbdc..29f28986e0 100644 --- a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/content/CoreBot.Tests/CoreBot.Tests.csproj +++ b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/content/CoreBot.Tests/CoreBot.Tests.csproj @@ -22,8 +22,8 @@ - - + + diff --git a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/content/CoreBot/CoreBot.csproj b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/content/CoreBot/CoreBot.csproj index bdf69d5177..5ba092ffa4 100644 --- a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/content/CoreBot/CoreBot.csproj +++ b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/content/CoreBot/CoreBot.csproj @@ -15,9 +15,9 @@ - - - + + + diff --git a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/content/CoreBot/appsettings.Development.json b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/content/CoreBot/appsettings.Development.json new file mode 100644 index 0000000000..e203e9407e --- /dev/null +++ b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.CoreBot/content/CoreBot/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Debug", + "System": "Information", + "Microsoft": "Information" + } + } +} diff --git a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EchoBot/Microsoft.BotFramework.CSharp.EchoBot.nuspec b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EchoBot/Microsoft.BotFramework.CSharp.EchoBot.nuspec index fe02fb688f..907f35b254 100644 --- a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EchoBot/Microsoft.BotFramework.CSharp.EchoBot.nuspec +++ b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EchoBot/Microsoft.BotFramework.CSharp.EchoBot.nuspec @@ -2,7 +2,7 @@ Microsoft.Bot.Framework.CSharp.EchoBot - 4.15.2 + 4.16.0 A .NET Core Template for Microsoft Bot Framework v4. Will let you quickly set up a bot that simply "echoes" back to the user anything the user says to the bot. This is a little more than "Hello World!" diff --git a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EchoBot/content/.template.config/template.json b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EchoBot/content/.template.config/template.json index d7cd12339a..c8d5339836 100644 --- a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EchoBot/content/.template.config/template.json +++ b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EchoBot/content/.template.config/template.json @@ -11,7 +11,7 @@ "defaultName": "EchoBot", "groupIdentity": "Microsoft.BotFramework.CSharp.EchoBot", "identity": "Microsoft.BotFramework.CSharp.EchoBot", - "name": "Bot Framework Echo Bot (v4.15.2)", + "name": "Bot Framework Echo Bot (v4.16.0)", "preferNameDirectory": true, "sourceName": "Microsoft.BotFramework.EchoBot", "shortName": "echobot", @@ -25,7 +25,7 @@ "type": "generated", "generator": "constant", "parameters": { - "value": "v4.15.2" + "value": "v4.16.0" }, "replaces": "__vX.X.X__" }, diff --git a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EchoBot/content/Microsoft.BotFramework.EchoBot.csproj b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EchoBot/content/Microsoft.BotFramework.EchoBot.csproj index 177c59d0c2..28790f4081 100644 --- a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EchoBot/content/Microsoft.BotFramework.EchoBot.csproj +++ b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EchoBot/content/Microsoft.BotFramework.EchoBot.csproj @@ -7,7 +7,7 @@ - + diff --git a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EchoBot/content/appsettings.Development.json b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EchoBot/content/appsettings.Development.json new file mode 100644 index 0000000000..e203e9407e --- /dev/null +++ b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EchoBot/content/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Debug", + "System": "Information", + "Microsoft": "Information" + } + } +} diff --git a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EmptyBot/Microsoft.BotFramework.CSharp.EmptyBot.nuspec b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EmptyBot/Microsoft.BotFramework.CSharp.EmptyBot.nuspec index 279c0e7289..f86f2ffbcf 100644 --- a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EmptyBot/Microsoft.BotFramework.CSharp.EmptyBot.nuspec +++ b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EmptyBot/Microsoft.BotFramework.CSharp.EmptyBot.nuspec @@ -2,9 +2,9 @@ Microsoft.Bot.Framework.CSharp.EmptyBot - 4.15.2 + 4.16.0 - A .NET Core Template for Microsoft Bot Framework v4. A good template if you are familiar with Bot Framework v4, and simple want a basic skeleton project. + A .NET Core Template for Microsoft Bot Framework v4. A good template if you are familiar with Bot Framework v4, and simple want a basic skeleton project. Microsoft © Microsoft Corporation. All rights reserved. diff --git a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EmptyBot/content/.template.config/template.json b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EmptyBot/content/.template.config/template.json index 9083227422..1cd897d52a 100644 --- a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EmptyBot/content/.template.config/template.json +++ b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EmptyBot/content/.template.config/template.json @@ -11,7 +11,7 @@ "defaultName": "EmptyBot", "groupIdentity": "Microsoft.BotFramework.CSharp.EmptyBot", "identity": "Microsoft.BotFramework.CSharp.EmptyBot", - "name": "Bot Framework Empty Bot (v4.15.2)", + "name": "Bot Framework Empty Bot (v4.16.0)", "preferNameDirectory": true, "sourceName": "Microsoft.BotFramework.EmptyBot", "shortName": "emptybot", @@ -25,7 +25,7 @@ "type": "generated", "generator": "constant", "parameters": { - "value": "v4.15.2" + "value": "v4.16.0" }, "replaces": "__vX.X.X__" }, diff --git a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EmptyBot/content/Microsoft.BotFramework.EmptyBot.csproj b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EmptyBot/content/Microsoft.BotFramework.EmptyBot.csproj index 9788eba982..174ba4fa84 100644 --- a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EmptyBot/content/Microsoft.BotFramework.EmptyBot.csproj +++ b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EmptyBot/content/Microsoft.BotFramework.EmptyBot.csproj @@ -8,7 +8,7 @@ - + diff --git a/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EmptyBot/content/appsettings.Development.json b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EmptyBot/content/appsettings.Development.json new file mode 100644 index 0000000000..e203e9407e --- /dev/null +++ b/generators/dotnet-templates/Microsoft.BotFramework.CSharp.EmptyBot/content/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Debug", + "System": "Information", + "Microsoft": "Information" + } + } +} diff --git a/generators/dotnet-templates/README.md b/generators/dotnet-templates/README.md index b188f935ed..883809ade7 100644 --- a/generators/dotnet-templates/README.md +++ b/generators/dotnet-templates/README.md @@ -3,7 +3,7 @@ using core AI capabilities. ## About -.NET Core Templates will help you to quickly build new conversational AI bots using [Bot Framework v4][1]. As of May 2020, these templates and the code they generate **require** [.NET Core 3.1][60]. +.NET Core Templates will help you to quickly build new conversational AI bots using [Bot Framework v4][1]. As of May 2020, these templates and the code they generate **require** [.NET Core 3.1][60]. ## Templates There are three different template options. The table below can help guide which template is right for you. @@ -121,7 +121,7 @@ dotnet new -i Microsoft.Bot.Framework.CSharp.EmptyBot dotnet new echobot -n MyEchoBot ``` -#### Create CoreBot +#### Create CoreBot > Note: For a core bot project, only the parent folder receives the bot name ```bash # Generate a Core Bot @@ -226,7 +226,7 @@ To work on the templates you need to package, install, and test locally build so Install [NuGet CLI][70] version 3.3 or higher: ```bash # determine nuget cli version -nuget +nuget ``` ```bash @@ -250,16 +250,16 @@ nuget pack Microsoft.BotFramework.CSharp.CoreBot The `nuget pack` command will build a package using a filename convention that includes the value of the `version` tag of the project's `.nuspec` file. For example, a `.nuspec` file that has the following `version` tag specified: ```xml - 4.15.2 + 4.16.0 ``` -Given the example above with `.nuspec` `version` of 4.15.2, running `nuget pack Microsoft.BotFramework.CSharp.EchoBot` will create a NuGet package named `Microsoft.Bot.Framework.CSharp.EchoBot.4.15.2.nupkg`. We'll use this NuGet package name in subsequent steps. +Given the example above with `.nuspec` `version` of 4.16.0, running `nuget pack Microsoft.BotFramework.CSharp.EchoBot` will create a NuGet package named `Microsoft.Bot.Framework.CSharp.EchoBot.4.16.0.nupkg`. We'll use this NuGet package name in subsequent steps. ```bash # install the locally built .nupkg (EchoBot template, assuming 4.9.0 version tag) -dotnet new -i ./Microsoft.Bot.Framework.CSharp.EchoBot.4.15.2.nupkg +dotnet new -i ./Microsoft.Bot.Framework.CSharp.EchoBot.4.16.0.nupkg ``` -To see a list of currently installed templates. With this command you should now see the locally build and installed NuGet package. +To see a list of currently installed templates. With this command you should now see the locally build and installed NuGet package. ```bash # list installed templates dotnet new --list @@ -270,7 +270,7 @@ dotnet new --list dotnet new echobot -n MyEchoBot ``` -Build and test the newly generated project. +Build and test the newly generated project. ```bash # uninstall the locally built .nupkg (EchoBot template) diff --git a/generators/vsix-vs-win/BotBuilderVSIX-V4/HOW_TO_VERSION.md b/generators/vsix-vs-win/BotBuilderVSIX-V4/HOW_TO_VERSION.md index 12260bbe5f..6fa3052ead 100644 --- a/generators/vsix-vs-win/BotBuilderVSIX-V4/HOW_TO_VERSION.md +++ b/generators/vsix-vs-win/BotBuilderVSIX-V4/HOW_TO_VERSION.md @@ -17,7 +17,7 @@ The `.vstemplate` files have a `` tag that ```xml - <<<-HAND-CRAFTED-semver + <<<-HAND-CRAFTED-semver ``` diff --git a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBot/CoreBot.csproj b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBot/CoreBot.csproj index c7de23da78..d67dcd8f19 100644 --- a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBot/CoreBot.csproj +++ b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBot/CoreBot.csproj @@ -15,9 +15,9 @@ - - - + + + diff --git a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBot/CoreBot.vstemplate b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBot/CoreBot.vstemplate index bdcac2e706..74dfd50a29 100644 --- a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBot/CoreBot.vstemplate +++ b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBot/CoreBot.vstemplate @@ -23,7 +23,7 @@ - + diff --git a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBot/appsettings.Development.json b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBot/appsettings.Development.json new file mode 100644 index 0000000000..e203e9407e --- /dev/null +++ b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBot/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Debug", + "System": "Information", + "Microsoft": "Information" + } + } +} diff --git a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot.tests/CoreBot.Tests.csproj b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot.tests/CoreBot.Tests.csproj index cbf08a9307..2fddcd6b35 100644 --- a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot.tests/CoreBot.Tests.csproj +++ b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot.tests/CoreBot.Tests.csproj @@ -22,7 +22,7 @@ - + diff --git a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot.tests/CoreBot.tests.vstemplate b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot.tests/CoreBot.tests.vstemplate index b1318d045b..ef6d5e3ba8 100644 --- a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot.tests/CoreBot.tests.vstemplate +++ b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot.tests/CoreBot.tests.vstemplate @@ -24,7 +24,7 @@ - + diff --git a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot/CoreBot.csproj b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot/CoreBot.csproj index 0411e83e68..0748358154 100644 --- a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot/CoreBot.csproj +++ b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot/CoreBot.csproj @@ -15,9 +15,9 @@ - - - + + + diff --git a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot/CoreBot.vstemplate b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot/CoreBot.vstemplate index 1f692dbcb4..eb79fd693d 100644 --- a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot/CoreBot.vstemplate +++ b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot/CoreBot.vstemplate @@ -24,7 +24,7 @@ - + diff --git a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot/appsettings.Development.json b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot/appsettings.Development.json new file mode 100644 index 0000000000..e203e9407e --- /dev/null +++ b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Debug", + "System": "Information", + "Microsoft": "Information" + } + } +} diff --git a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBotWithTests.vstemplate b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBotWithTests.vstemplate index 7aaec1d5a4..412d337e78 100644 --- a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBotWithTests.vstemplate +++ b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBotWithTests.vstemplate @@ -23,7 +23,7 @@ - + diff --git a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EchoBot/EchoBot.csproj b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EchoBot/EchoBot.csproj index fdfc28d5e2..d46dfdb355 100644 --- a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EchoBot/EchoBot.csproj +++ b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EchoBot/EchoBot.csproj @@ -7,7 +7,7 @@ - + diff --git a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EchoBot/EchoBot.vstemplate b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EchoBot/EchoBot.vstemplate index 61a5ba76e8..b4eef69c4b 100644 --- a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EchoBot/EchoBot.vstemplate +++ b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EchoBot/EchoBot.vstemplate @@ -23,7 +23,7 @@ - + diff --git a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EchoBot/appsettings.Development.json b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EchoBot/appsettings.Development.json new file mode 100644 index 0000000000..e203e9407e --- /dev/null +++ b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EchoBot/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Debug", + "System": "Information", + "Microsoft": "Information" + } + } +} diff --git a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EmptyBot/EmptyBot.csproj b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EmptyBot/EmptyBot.csproj index fdfc28d5e2..d46dfdb355 100644 --- a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EmptyBot/EmptyBot.csproj +++ b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EmptyBot/EmptyBot.csproj @@ -7,7 +7,7 @@ - + diff --git a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EmptyBot/EmptyBot.vstemplate b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EmptyBot/EmptyBot.vstemplate index 214c775a67..42a764e9d6 100644 --- a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EmptyBot/EmptyBot.vstemplate +++ b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EmptyBot/EmptyBot.vstemplate @@ -23,7 +23,7 @@ - + diff --git a/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EmptyBot/appsettings.Development.json b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EmptyBot/appsettings.Development.json new file mode 100644 index 0000000000..e203e9407e --- /dev/null +++ b/generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/EmptyBot/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Debug", + "System": "Information", + "Microsoft": "Information" + } + } +} diff --git a/generators/vsix-vs-win/BotBuilderVSIX-V4/source.extension.vsixmanifest b/generators/vsix-vs-win/BotBuilderVSIX-V4/source.extension.vsixmanifest index 56cebe808d..40a7dbec3f 100644 --- a/generators/vsix-vs-win/BotBuilderVSIX-V4/source.extension.vsixmanifest +++ b/generators/vsix-vs-win/BotBuilderVSIX-V4/source.extension.vsixmanifest @@ -1,7 +1,7 @@ - + Bot Framework v4 SDK Templates for Visual Studio Templates for Microsoft Bot Framework v4. Will let you quickly create a bot that uses core AI capabilities. https://aka.ms/BotBuilderOverview