forked from microsoft/BotBuilder-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CSharp-ContosoFlowers] Update to Microsoft.Bot.Builder v3.5.0 and ad…
…d of Bing Location control
- Loading branch information
1 parent
b45cf35
commit 53d7210
Showing
29 changed files
with
264 additions
and
756 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
CSharp/demo-ContosoFlowers/ContosoFlowers.BotAssets/ContosoLocationResourceManager.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
namespace ContosoFlowers.BotAssets | ||
{ | ||
using System; | ||
using Microsoft.Bot.Builder.Location; | ||
using Properties; | ||
|
||
[Serializable] | ||
public class ContosoLocationResourceManager : LocationResourceManager | ||
{ | ||
public override string ConfirmationAsk => Resources.Location_ConfirmationAsk; | ||
} | ||
} |
85 changes: 0 additions & 85 deletions
85
CSharp/demo-ContosoFlowers/ContosoFlowers.BotAssets/Dialogs/AddressDialog.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
CSharp/demo-ContosoFlowers/ContosoFlowers.BotAssets/Dialogs/IDialogFactory.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
namespace ContosoFlowers.BotAssets | ||
{ | ||
using System.Collections.Generic; | ||
|
||
public interface IDialogFactory | ||
{ | ||
T Create<T>(); | ||
|
||
T Create<T, U>(U parameter); | ||
|
||
T Create<T>(IDictionary<string, object> parameters); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
CSharp/demo-ContosoFlowers/ContosoFlowers.BotAssets/Properties/Resources.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 7 additions & 6 deletions
13
CSharp/demo-ContosoFlowers/ContosoFlowers.BotAssets/packages.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Autofac" version="4.0.0" targetFramework="net46" /> | ||
<package id="Autofac" version="4.2.1" targetFramework="net46" /> | ||
<package id="Chronic.Signed" version="0.3.2" targetFramework="net46" /> | ||
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.3" targetFramework="net46" /> | ||
<package id="Microsoft.AspNet.WebApi.Core" version="5.2.3" targetFramework="net46" /> | ||
<package id="Microsoft.Bot.Builder" version="3.2.1" targetFramework="net46" /> | ||
<package id="Microsoft.IdentityModel.Protocol.Extensions" version="1.0.2.206221351" targetFramework="net46" /> | ||
<package id="Microsoft.Rest.ClientRuntime" version="2.3.2" targetFramework="net46" /> | ||
<package id="Newtonsoft.Json" version="8.0.3" targetFramework="net46" /> | ||
<package id="System.IdentityModel.Tokens.Jwt" version="4.0.2.206221351" targetFramework="net46" /> | ||
<package id="Microsoft.Bot.Builder" version="3.5.0" targetFramework="net46" /> | ||
<package id="Microsoft.Bot.Builder.Location" version="1.1.0" targetFramework="net46" /> | ||
<package id="Microsoft.IdentityModel.Protocol.Extensions" version="1.0.3.308261200" targetFramework="net46" /> | ||
<package id="Microsoft.Rest.ClientRuntime" version="2.3.4" targetFramework="net46" /> | ||
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net46" /> | ||
<package id="System.IdentityModel.Tokens.Jwt" version="4.0.3.308261200" targetFramework="net46" /> | ||
</packages> |
23 changes: 0 additions & 23 deletions
23
CSharp/demo-ContosoFlowers/ContosoFlowers.Services/BingLocationService.cs
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.