Skip to content

Commit d8a7cba

Browse files
committed
Fixing syntax errors
1 parent 23b9b4c commit d8a7cba

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBot/FlightBookingRecognizer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public FlightBookingRecognizer(IConfiguration configuration)
2626
// More details can be found in https://docs.microsoft.com/en-gb/azure/cognitive-services/luis/luis-migration-api-v3
2727
var recognizerOptions = new LuisRecognizerOptionsV3(luisApplication)
2828
{
29-
PredictionOptions = new Microsoft.Bot.Builder.AI.LuisV3.LuisPredictionOptions()
29+
PredictionOptions = new Microsoft.Bot.Builder.AI.LuisV3.LuisPredictionOptions
3030
{
3131
IncludeInstanceData = true,
3232
}

generators/vsix-vs-win/BotBuilderVSIX-V4/UncompressedProjectTemplates/CoreBotWithTests/CoreBot/FlightBookingRecognizer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public FlightBookingRecognizer(IConfiguration configuration)
2727
// More details can be found in https://docs.microsoft.com/en-gb/azure/cognitive-services/luis/luis-migration-api-v3
2828
var recognizerOptions = new LuisRecognizerOptionsV3(luisApplication)
2929
{
30-
PredictionOptions = new Microsoft.Bot.Builder.AI.LuisV3.LuisPredictionOptions()
30+
PredictionOptions = new Microsoft.Bot.Builder.AI.LuisV3.LuisPredictionOptions
3131
{
3232
IncludeInstanceData = true,
3333
}

samples/csharp_dotnetcore/13.core-bot/FlightBookingRecognizer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public FlightBookingRecognizer(IConfiguration configuration)
2626
// More details can be found in https://docs.microsoft.com/en-gb/azure/cognitive-services/luis/luis-migration-api-v3
2727
var recognizerOptions = new LuisRecognizerOptionsV3(luisApplication)
2828
{
29-
PredictionOptions = new Bot.Builder.AI.LuisV3.LuisPredictionOptions()
29+
PredictionOptions = new Bot.Builder.AI.LuisV3.LuisPredictionOptions
3030
{
3131
IncludeInstanceData = true,
3232
}

0 commit comments

Comments
 (0)