Skip to content

Commit

Permalink
For fixing assembly difference issue
Browse files Browse the repository at this point in the history
  • Loading branch information
vipeketi committed Jun 2, 2020
1 parent 6fe9d33 commit fdfcbe0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Microsoft.Bot.Builder.sln
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Parent", "tests\Skills\Pare
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Child", "tests\Skills\Child\Child.csproj", "{1958FBA4-BF2D-48D9-A5DB-8915F553EBD3}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QnABotAllFeatures", "..\..\BotBuilder-Samples\BotBuilder-Samples\samples\csharp_dotnetcore\49.qnamaker-all-features\QnABotAllFeatures.csproj", "{B03AF5FE-5E8F-4F1C-A24F-FAAFC4BCF7A8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -736,6 +738,14 @@ Global
{1958FBA4-BF2D-48D9-A5DB-8915F553EBD3}.Release|Any CPU.Build.0 = Release|Any CPU
{1958FBA4-BF2D-48D9-A5DB-8915F553EBD3}.Release-Windows|Any CPU.ActiveCfg = Release|Any CPU
{1958FBA4-BF2D-48D9-A5DB-8915F553EBD3}.Release-Windows|Any CPU.Build.0 = Release|Any CPU
{B03AF5FE-5E8F-4F1C-A24F-FAAFC4BCF7A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B03AF5FE-5E8F-4F1C-A24F-FAAFC4BCF7A8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B03AF5FE-5E8F-4F1C-A24F-FAAFC4BCF7A8}.Debug-Windows|Any CPU.ActiveCfg = Debug|Any CPU
{B03AF5FE-5E8F-4F1C-A24F-FAAFC4BCF7A8}.Debug-Windows|Any CPU.Build.0 = Debug|Any CPU
{B03AF5FE-5E8F-4F1C-A24F-FAAFC4BCF7A8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B03AF5FE-5E8F-4F1C-A24F-FAAFC4BCF7A8}.Release|Any CPU.Build.0 = Release|Any CPU
{B03AF5FE-5E8F-4F1C-A24F-FAAFC4BCF7A8}.Release-Windows|Any CPU.ActiveCfg = Release|Any CPU
{B03AF5FE-5E8F-4F1C-A24F-FAAFC4BCF7A8}.Release-Windows|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
11 changes: 11 additions & 0 deletions libraries/Microsoft.Bot.Builder.AI.QnA/Utils/QnACardBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,17 @@ public static IMessageActivity GetSuggestionsCard(List<string> suggestionsList,
return chatActivity;
}

/// <summary>
/// Get Card for MultiTurn scenario. (Can be deprecated from 4.10.0 release of sdk).
/// </summary>
/// <param name="result">Result to be displayed as prompts.</param>
/// <param name="cardNoMatchText">No match text.</param>
/// <returns>IMessageActivity.</returns>
public static IMessageActivity GetQnAPromptsCard(QueryResult result, string cardNoMatchText)
{
return GetQnADefaultResponse(result, true, CancellationToken.None);
}

/// <summary>
/// Get Card for MultiTurn scenario. (Can be deprecated from 4.10.0 release of sdk).
/// </summary>
Expand Down

0 comments on commit fdfcbe0

Please sign in to comment.