├── .gitattributes
├── .gitignore
├── ChatBot.sln
├── ChatBot
├── ChatBot.Android
│ ├── Assets
│ │ └── AboutAssets.txt
│ ├── ChatBot.Android.csproj
│ ├── MainActivity.cs
│ ├── Properties
│ │ ├── AndroidManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── AboutResources.txt
│ │ ├── Resource.Designer.cs
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-xhdpi
│ │ │ └── icon.png
│ │ ├── drawable-xxhdpi
│ │ │ └── icon.png
│ │ ├── drawable
│ │ │ └── icon.png
│ │ ├── layout
│ │ │ ├── Tabbar.axml
│ │ │ └── Toolbar.axml
│ │ └── values
│ │ │ └── styles.xml
│ └── packages.config
├── ChatBot.UWP
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Assets
│ │ ├── LockScreenLogo.scale-100.png
│ │ ├── LockScreenLogo.scale-125.png
│ │ ├── LockScreenLogo.scale-150.png
│ │ ├── LockScreenLogo.scale-200.png
│ │ ├── LockScreenLogo.scale-400.png
│ │ ├── SplashScreen.scale-100.png
│ │ ├── SplashScreen.scale-125.png
│ │ ├── SplashScreen.scale-150.png
│ │ ├── SplashScreen.scale-200.png
│ │ ├── SplashScreen.scale-400.png
│ │ ├── Square150x150Logo.scale-100.png
│ │ ├── Square150x150Logo.scale-125.png
│ │ ├── Square150x150Logo.scale-150.png
│ │ ├── Square150x150Logo.scale-200.png
│ │ ├── Square150x150Logo.scale-400.png
│ │ ├── Square44x44Logo.scale-100.png
│ │ ├── Square44x44Logo.scale-125.png
│ │ ├── Square44x44Logo.scale-150.png
│ │ ├── Square44x44Logo.scale-200.png
│ │ ├── Square44x44Logo.scale-400.png
│ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png
│ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png
│ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png
│ │ ├── Square44x44Logo.targetsize-32_altform-unplated.png
│ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png
│ │ ├── StoreLogo.png
│ │ ├── Wide310x150Logo.scale-100.png
│ │ ├── Wide310x150Logo.scale-125.png
│ │ ├── Wide310x150Logo.scale-150.png
│ │ ├── Wide310x150Logo.scale-200.png
│ │ └── Wide310x150Logo.scale-400.png
│ ├── ChatBot.UWP.csproj
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── Package.appxmanifest
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── Default.rd.xml
│ └── project.json
├── ChatBot.iOS
│ ├── AppDelegate.cs
│ ├── ChatBot.iOS.csproj
│ ├── Entitlements.plist
│ ├── Info.plist
│ ├── Main.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── Default-568h@2x.png
│ │ ├── Default-Portrait.png
│ │ ├── Default-Portrait@2x.png
│ │ ├── Default.png
│ │ ├── Default@2x.png
│ │ ├── Icon-60@2x.png
│ │ ├── Icon-60@3x.png
│ │ ├── Icon-76.png
│ │ ├── Icon-76@2x.png
│ │ ├── Icon-Small-40.png
│ │ ├── Icon-Small-40@2x.png
│ │ ├── Icon-Small-40@3x.png
│ │ ├── Icon-Small.png
│ │ ├── Icon-Small@2x.png
│ │ ├── Icon-Small@3x.png
│ │ └── LaunchScreen.storyboard
│ ├── iTunesArtwork
│ ├── iTunesArtwork@2x
│ └── packages.config
└── ChatBot
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── ChatBot.csproj
│ ├── ChatDataTemplateSelector.cs
│ ├── ChatView.xaml
│ ├── ChatView.xaml.cs
│ ├── Framework
│ ├── Activity.cs
│ ├── Conversation.cs
│ ├── HttpClient.cs
│ ├── HttpRequest.cs
│ ├── HttpResponse.cs
│ ├── Member.cs
│ ├── Message.cs
│ ├── MessageType.cs
│ └── Response.cs
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── Model
│ └── MainModel.cs
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── ViewModel
│ └── MainViewModel.cs
│ └── project.json
└── LICENSE
/.gitattributes:
--------------------------------------------------------------------------------
1 | ###############################################################################
2 | # Set default behavior to automatically normalize line endings.
3 | ###############################################################################
4 | * text=auto
5 |
6 | ###############################################################################
7 | # Set default behavior for command prompt diff.
8 | #
9 | # This is need for earlier builds of msysgit that does not have it on by
10 | # default for csharp files.
11 | # Note: This is only used by command line
12 | ###############################################################################
13 | #*.cs diff=csharp
14 |
15 | ###############################################################################
16 | # Set the merge driver for project and solution files
17 | #
18 | # Merging from the command prompt will add diff markers to the files if there
19 | # are conflicts (Merging from VS is not affected by the settings below, in VS
20 | # the diff markers are never inserted). Diff markers may cause the following
21 | # file extensions to fail to load in VS. An alternative would be to treat
22 | # these files as binary and thus will always conflict and require user
23 | # intervention with every merge. To do so, just uncomment the entries below
24 | ###############################################################################
25 | #*.sln merge=binary
26 | #*.csproj merge=binary
27 | #*.vbproj merge=binary
28 | #*.vcxproj merge=binary
29 | #*.vcproj merge=binary
30 | #*.dbproj merge=binary
31 | #*.fsproj merge=binary
32 | #*.lsproj merge=binary
33 | #*.wixproj merge=binary
34 | #*.modelproj merge=binary
35 | #*.sqlproj merge=binary
36 | #*.wwaproj merge=binary
37 |
38 | ###############################################################################
39 | # behavior for image files
40 | #
41 | # image files are treated as binary by default.
42 | ###############################################################################
43 | #*.jpg binary
44 | #*.png binary
45 | #*.gif binary
46 |
47 | ###############################################################################
48 | # diff behavior for common document formats
49 | #
50 | # Convert binary document formats to text before diffing them. This feature
51 | # is only available from the command line. Turn it on by uncommenting the
52 | # entries below.
53 | ###############################################################################
54 | #*.doc diff=astextplain
55 | #*.DOC diff=astextplain
56 | #*.docx diff=astextplain
57 | #*.DOCX diff=astextplain
58 | #*.dot diff=astextplain
59 | #*.DOT diff=astextplain
60 | #*.pdf diff=astextplain
61 | #*.PDF diff=astextplain
62 | #*.rtf diff=astextplain
63 | #*.RTF diff=astextplain
64 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | ## Ignore Visual Studio temporary files, build results, and
2 | ## files generated by popular Visual Studio add-ons.
3 |
4 | # User-specific files
5 | *.suo
6 | *.user
7 | *.userosscache
8 | *.sln.docstates
9 |
10 | # User-specific files (MonoDevelop/Xamarin Studio)
11 | *.userprefs
12 |
13 | # Build results
14 | [Dd]ebug/
15 | [Dd]ebugPublic/
16 | [Rr]elease/
17 | [Rr]eleases/
18 | x64/
19 | x86/
20 | bld/
21 | [Bb]in/
22 | [Oo]bj/
23 | [Ll]og/
24 |
25 | # Visual Studio 2015 cache/options directory
26 | .vs/
27 | # Uncomment if you have tasks that create the project's static files in wwwroot
28 | #wwwroot/
29 |
30 | # MSTest test Results
31 | [Tt]est[Rr]esult*/
32 | [Bb]uild[Ll]og.*
33 |
34 | # NUNIT
35 | *.VisualState.xml
36 | TestResult.xml
37 |
38 | # Build Results of an ATL Project
39 | [Dd]ebugPS/
40 | [Rr]eleasePS/
41 | dlldata.c
42 |
43 | # DNX
44 | project.lock.json
45 | project.fragment.lock.json
46 | artifacts/
47 |
48 | *_i.c
49 | *_p.c
50 | *_i.h
51 | *.ilk
52 | *.meta
53 | *.obj
54 | *.pch
55 | *.pdb
56 | *.pgc
57 | *.pgd
58 | *.rsp
59 | *.sbr
60 | *.tlb
61 | *.tli
62 | *.tlh
63 | *.tmp
64 | *.tmp_proj
65 | *.log
66 | *.vspscc
67 | *.vssscc
68 | .builds
69 | *.pidb
70 | *.svclog
71 | *.scc
72 |
73 | # Chutzpah Test files
74 | _Chutzpah*
75 |
76 | # Visual C++ cache files
77 | ipch/
78 | *.aps
79 | *.ncb
80 | *.opendb
81 | *.opensdf
82 | *.sdf
83 | *.cachefile
84 | *.VC.db
85 | *.VC.VC.opendb
86 |
87 | # Visual Studio profiler
88 | *.psess
89 | *.vsp
90 | *.vspx
91 | *.sap
92 |
93 | # TFS 2012 Local Workspace
94 | $tf/
95 |
96 | # Guidance Automation Toolkit
97 | *.gpState
98 |
99 | # ReSharper is a .NET coding add-in
100 | _ReSharper*/
101 | *.[Rr]e[Ss]harper
102 | *.DotSettings.user
103 |
104 | # JustCode is a .NET coding add-in
105 | .JustCode
106 |
107 | # TeamCity is a build add-in
108 | _TeamCity*
109 |
110 | # DotCover is a Code Coverage Tool
111 | *.dotCover
112 |
113 | # NCrunch
114 | _NCrunch_*
115 | .*crunch*.local.xml
116 | nCrunchTemp_*
117 |
118 | # MightyMoose
119 | *.mm.*
120 | AutoTest.Net/
121 |
122 | # Web workbench (sass)
123 | .sass-cache/
124 |
125 | # Installshield output folder
126 | [Ee]xpress/
127 |
128 | # DocProject is a documentation generator add-in
129 | DocProject/buildhelp/
130 | DocProject/Help/*.HxT
131 | DocProject/Help/*.HxC
132 | DocProject/Help/*.hhc
133 | DocProject/Help/*.hhk
134 | DocProject/Help/*.hhp
135 | DocProject/Help/Html2
136 | DocProject/Help/html
137 |
138 | # Click-Once directory
139 | publish/
140 |
141 | # Publish Web Output
142 | *.[Pp]ublish.xml
143 | *.azurePubxml
144 | # TODO: Comment the next line if you want to checkin your web deploy settings
145 | # but database connection strings (with potential passwords) will be unencrypted
146 | #*.pubxml
147 | *.publishproj
148 |
149 | # Microsoft Azure Web App publish settings. Comment the next line if you want to
150 | # checkin your Azure Web App publish settings, but sensitive information contained
151 | # in these scripts will be unencrypted
152 | PublishScripts/
153 |
154 | # NuGet Packages
155 | *.nupkg
156 | # The packages folder can be ignored because of Package Restore
157 | **/packages/*
158 | # except build/, which is used as an MSBuild target.
159 | !**/packages/build/
160 | # Uncomment if necessary however generally it will be regenerated when needed
161 | #!**/packages/repositories.config
162 | # NuGet v3's project.json files produces more ignoreable files
163 | *.nuget.props
164 | *.nuget.targets
165 |
166 | # Microsoft Azure Build Output
167 | csx/
168 | *.build.csdef
169 |
170 | # Microsoft Azure Emulator
171 | ecf/
172 | rcf/
173 |
174 | # Windows Store app package directories and files
175 | AppPackages/
176 | BundleArtifacts/
177 | Package.StoreAssociation.xml
178 | _pkginfo.txt
179 |
180 | # Visual Studio cache files
181 | # files ending in .cache can be ignored
182 | *.[Cc]ache
183 | # but keep track of directories ending in .cache
184 | !*.[Cc]ache/
185 |
186 | # Others
187 | ClientBin/
188 | ~$*
189 | *~
190 | *.dbmdl
191 | *.dbproj.schemaview
192 | *.jfm
193 | *.pfx
194 | *.publishsettings
195 | node_modules/
196 | orleans.codegen.cs
197 |
198 | # Since there are multiple workflows, uncomment next line to ignore bower_components
199 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
200 | #bower_components/
201 |
202 | # RIA/Silverlight projects
203 | Generated_Code/
204 |
205 | # Backup & report files from converting an old project file
206 | # to a newer Visual Studio version. Backup files are not needed,
207 | # because we have git ;-)
208 | _UpgradeReport_Files/
209 | Backup*/
210 | UpgradeLog*.XML
211 | UpgradeLog*.htm
212 |
213 | # SQL Server files
214 | *.mdf
215 | *.ldf
216 |
217 | # Business Intelligence projects
218 | *.rdl.data
219 | *.bim.layout
220 | *.bim_*.settings
221 |
222 | # Microsoft Fakes
223 | FakesAssemblies/
224 |
225 | # GhostDoc plugin setting file
226 | *.GhostDoc.xml
227 |
228 | # Node.js Tools for Visual Studio
229 | .ntvs_analysis.dat
230 |
231 | # Visual Studio 6 build log
232 | *.plg
233 |
234 | # Visual Studio 6 workspace options file
235 | *.opt
236 |
237 | # Visual Studio LightSwitch build output
238 | **/*.HTMLClient/GeneratedArtifacts
239 | **/*.DesktopClient/GeneratedArtifacts
240 | **/*.DesktopClient/ModelManifest.xml
241 | **/*.Server/GeneratedArtifacts
242 | **/*.Server/ModelManifest.xml
243 | _Pvt_Extensions
244 |
245 | # Paket dependency manager
246 | .paket/paket.exe
247 | paket-files/
248 |
249 | # FAKE - F# Make
250 | .fake/
251 |
252 | # JetBrains Rider
253 | .idea/
254 | *.sln.iml
255 |
256 | # CodeRush
257 | .cr/
258 |
259 | # Python Tools for Visual Studio (PTVS)
260 | __pycache__/
261 | *.pyc
--------------------------------------------------------------------------------
/ChatBot.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 15
4 | VisualStudioVersion = 15.0.26430.12
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChatBot.Android", "ChatBot\ChatBot.Android\ChatBot.Android.csproj", "{84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}"
7 | EndProject
8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChatBot", "ChatBot\ChatBot\ChatBot.csproj", "{F4F851F2-C48D-4AFB-B138-A4249DB68C34}"
9 | EndProject
10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChatBot.UWP", "ChatBot\ChatBot.UWP\ChatBot.UWP.csproj", "{F3CE66D0-0E0F-4874-A220-DD657EA174B3}"
11 | EndProject
12 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChatBot.iOS", "ChatBot\ChatBot.iOS\ChatBot.iOS.csproj", "{DBCC6D47-4C3A-483E-98EF-4794C71471E4}"
13 | EndProject
14 | Global
15 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
16 | Ad-Hoc|Any CPU = Ad-Hoc|Any CPU
17 | Ad-Hoc|ARM = Ad-Hoc|ARM
18 | Ad-Hoc|iPhone = Ad-Hoc|iPhone
19 | Ad-Hoc|iPhoneSimulator = Ad-Hoc|iPhoneSimulator
20 | Ad-Hoc|x64 = Ad-Hoc|x64
21 | Ad-Hoc|x86 = Ad-Hoc|x86
22 | AppStore|Any CPU = AppStore|Any CPU
23 | AppStore|ARM = AppStore|ARM
24 | AppStore|iPhone = AppStore|iPhone
25 | AppStore|iPhoneSimulator = AppStore|iPhoneSimulator
26 | AppStore|x64 = AppStore|x64
27 | AppStore|x86 = AppStore|x86
28 | Debug|Any CPU = Debug|Any CPU
29 | Debug|ARM = Debug|ARM
30 | Debug|iPhone = Debug|iPhone
31 | Debug|iPhoneSimulator = Debug|iPhoneSimulator
32 | Debug|x64 = Debug|x64
33 | Debug|x86 = Debug|x86
34 | Release|Any CPU = Release|Any CPU
35 | Release|ARM = Release|ARM
36 | Release|iPhone = Release|iPhone
37 | Release|iPhoneSimulator = Release|iPhoneSimulator
38 | Release|x64 = Release|x64
39 | Release|x86 = Release|x86
40 | EndGlobalSection
41 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
42 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
43 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
44 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU
45 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
46 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
47 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|ARM.Deploy.0 = Release|Any CPU
48 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
49 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
50 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|iPhone.Deploy.0 = Release|Any CPU
51 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
52 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
53 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU
54 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
55 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|x64.Build.0 = Release|Any CPU
56 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|x64.Deploy.0 = Release|Any CPU
57 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
58 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|x86.Build.0 = Release|Any CPU
59 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Ad-Hoc|x86.Deploy.0 = Release|Any CPU
60 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
61 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|Any CPU.Build.0 = Release|Any CPU
62 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|Any CPU.Deploy.0 = Release|Any CPU
63 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|ARM.ActiveCfg = Release|Any CPU
64 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|ARM.Build.0 = Release|Any CPU
65 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|ARM.Deploy.0 = Release|Any CPU
66 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|iPhone.ActiveCfg = Release|Any CPU
67 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|iPhone.Build.0 = Release|Any CPU
68 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|iPhone.Deploy.0 = Release|Any CPU
69 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
70 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
71 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU
72 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|x64.ActiveCfg = Release|Any CPU
73 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|x64.Build.0 = Release|Any CPU
74 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|x64.Deploy.0 = Release|Any CPU
75 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|x86.ActiveCfg = Release|Any CPU
76 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|x86.Build.0 = Release|Any CPU
77 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.AppStore|x86.Deploy.0 = Release|Any CPU
78 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
79 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|Any CPU.Build.0 = Debug|Any CPU
80 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
81 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|ARM.ActiveCfg = Debug|Any CPU
82 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|ARM.Build.0 = Debug|Any CPU
83 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|ARM.Deploy.0 = Debug|Any CPU
84 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|iPhone.ActiveCfg = Debug|Any CPU
85 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|iPhone.Build.0 = Debug|Any CPU
86 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|iPhone.Deploy.0 = Debug|Any CPU
87 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
88 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
89 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
90 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|x64.ActiveCfg = Debug|Any CPU
91 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|x64.Build.0 = Debug|Any CPU
92 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|x64.Deploy.0 = Debug|Any CPU
93 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|x86.ActiveCfg = Debug|Any CPU
94 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|x86.Build.0 = Debug|Any CPU
95 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Debug|x86.Deploy.0 = Debug|Any CPU
96 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|Any CPU.ActiveCfg = Release|Any CPU
97 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|Any CPU.Build.0 = Release|Any CPU
98 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|Any CPU.Deploy.0 = Release|Any CPU
99 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|ARM.ActiveCfg = Release|Any CPU
100 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|ARM.Build.0 = Release|Any CPU
101 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|ARM.Deploy.0 = Release|Any CPU
102 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|iPhone.ActiveCfg = Release|Any CPU
103 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|iPhone.Build.0 = Release|Any CPU
104 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|iPhone.Deploy.0 = Release|Any CPU
105 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
106 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
107 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
108 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|x64.ActiveCfg = Release|Any CPU
109 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|x64.Build.0 = Release|Any CPU
110 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|x64.Deploy.0 = Release|Any CPU
111 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|x86.ActiveCfg = Release|Any CPU
112 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|x86.Build.0 = Release|Any CPU
113 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}.Release|x86.Deploy.0 = Release|Any CPU
114 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
115 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
116 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
117 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
118 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
119 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
120 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
121 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
122 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
123 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Ad-Hoc|x64.Build.0 = Release|Any CPU
124 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
125 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Ad-Hoc|x86.Build.0 = Release|Any CPU
126 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
127 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.AppStore|Any CPU.Build.0 = Release|Any CPU
128 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.AppStore|ARM.ActiveCfg = Release|Any CPU
129 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.AppStore|ARM.Build.0 = Release|Any CPU
130 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.AppStore|iPhone.ActiveCfg = Release|Any CPU
131 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.AppStore|iPhone.Build.0 = Release|Any CPU
132 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
133 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
134 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.AppStore|x64.ActiveCfg = Release|Any CPU
135 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.AppStore|x64.Build.0 = Release|Any CPU
136 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.AppStore|x86.ActiveCfg = Release|Any CPU
137 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.AppStore|x86.Build.0 = Release|Any CPU
138 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
139 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Debug|Any CPU.Build.0 = Debug|Any CPU
140 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Debug|ARM.ActiveCfg = Debug|Any CPU
141 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Debug|ARM.Build.0 = Debug|Any CPU
142 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Debug|iPhone.ActiveCfg = Debug|Any CPU
143 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Debug|iPhone.Build.0 = Debug|Any CPU
144 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
145 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
146 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Debug|x64.ActiveCfg = Debug|Any CPU
147 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Debug|x64.Build.0 = Debug|Any CPU
148 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Debug|x86.ActiveCfg = Debug|Any CPU
149 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Debug|x86.Build.0 = Debug|Any CPU
150 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Release|Any CPU.ActiveCfg = Release|Any CPU
151 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Release|Any CPU.Build.0 = Release|Any CPU
152 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Release|ARM.ActiveCfg = Release|Any CPU
153 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Release|ARM.Build.0 = Release|Any CPU
154 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Release|iPhone.ActiveCfg = Release|Any CPU
155 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Release|iPhone.Build.0 = Release|Any CPU
156 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
157 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
158 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Release|x64.ActiveCfg = Release|Any CPU
159 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Release|x64.Build.0 = Release|Any CPU
160 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Release|x86.ActiveCfg = Release|Any CPU
161 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}.Release|x86.Build.0 = Release|Any CPU
162 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|Any CPU.ActiveCfg = Release|x86
163 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|Any CPU.Build.0 = Release|x86
164 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|Any CPU.Deploy.0 = Release|x86
165 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|ARM.ActiveCfg = Release|ARM
166 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|ARM.Build.0 = Release|ARM
167 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|ARM.Deploy.0 = Release|ARM
168 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|iPhone.ActiveCfg = Release|x86
169 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|iPhone.Build.0 = Release|x86
170 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|iPhone.Deploy.0 = Release|x86
171 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|x86
172 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|x86
173 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|x86
174 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|x64.ActiveCfg = Release|x64
175 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|x64.Build.0 = Release|x64
176 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|x64.Deploy.0 = Release|x64
177 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|x86.ActiveCfg = Release|x86
178 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|x86.Build.0 = Release|x86
179 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Ad-Hoc|x86.Deploy.0 = Release|x86
180 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|Any CPU.ActiveCfg = Release|x86
181 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|Any CPU.Build.0 = Release|x86
182 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|Any CPU.Deploy.0 = Release|x86
183 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|ARM.ActiveCfg = Release|ARM
184 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|ARM.Build.0 = Release|ARM
185 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|ARM.Deploy.0 = Release|ARM
186 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|iPhone.ActiveCfg = Release|x86
187 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|iPhone.Build.0 = Release|x86
188 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|iPhone.Deploy.0 = Release|x86
189 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|iPhoneSimulator.ActiveCfg = Release|x86
190 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|iPhoneSimulator.Build.0 = Release|x86
191 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|iPhoneSimulator.Deploy.0 = Release|x86
192 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|x64.ActiveCfg = Release|x64
193 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|x64.Build.0 = Release|x64
194 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|x64.Deploy.0 = Release|x64
195 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|x86.ActiveCfg = Release|x86
196 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|x86.Build.0 = Release|x86
197 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.AppStore|x86.Deploy.0 = Release|x86
198 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Debug|Any CPU.ActiveCfg = Debug|x86
199 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Debug|Any CPU.Build.0 = Debug|x86
200 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Debug|Any CPU.Deploy.0 = Debug|x86
201 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Debug|ARM.ActiveCfg = Debug|ARM
202 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Debug|ARM.Build.0 = Debug|ARM
203 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Debug|ARM.Deploy.0 = Debug|ARM
204 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Debug|iPhone.ActiveCfg = Debug|x86
205 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Debug|iPhoneSimulator.ActiveCfg = Debug|x86
206 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Debug|x64.ActiveCfg = Debug|x64
207 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Debug|x64.Build.0 = Debug|x64
208 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Debug|x64.Deploy.0 = Debug|x64
209 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Debug|x86.ActiveCfg = Debug|x86
210 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Debug|x86.Build.0 = Debug|x86
211 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Debug|x86.Deploy.0 = Debug|x86
212 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Release|Any CPU.ActiveCfg = Release|x86
213 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Release|ARM.ActiveCfg = Release|ARM
214 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Release|ARM.Build.0 = Release|ARM
215 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Release|ARM.Deploy.0 = Release|ARM
216 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Release|iPhone.ActiveCfg = Release|x86
217 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Release|iPhoneSimulator.ActiveCfg = Release|x86
218 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Release|x64.ActiveCfg = Release|x64
219 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Release|x64.Build.0 = Release|x64
220 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Release|x64.Deploy.0 = Release|x64
221 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Release|x86.ActiveCfg = Release|x86
222 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Release|x86.Build.0 = Release|x86
223 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}.Release|x86.Deploy.0 = Release|x86
224 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhone
225 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Ad-Hoc|ARM.ActiveCfg = Ad-Hoc|iPhone
226 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone
227 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone
228 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator
229 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator
230 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Ad-Hoc|x64.ActiveCfg = Ad-Hoc|iPhone
231 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Ad-Hoc|x86.ActiveCfg = Ad-Hoc|iPhone
232 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.AppStore|Any CPU.ActiveCfg = AppStore|iPhone
233 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.AppStore|ARM.ActiveCfg = AppStore|iPhone
234 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.AppStore|iPhone.ActiveCfg = AppStore|iPhone
235 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.AppStore|iPhone.Build.0 = AppStore|iPhone
236 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator
237 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator
238 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.AppStore|x64.ActiveCfg = AppStore|iPhone
239 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.AppStore|x86.ActiveCfg = AppStore|iPhone
240 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Debug|Any CPU.ActiveCfg = Debug|iPhone
241 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Debug|ARM.ActiveCfg = Debug|iPhone
242 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Debug|iPhone.ActiveCfg = Debug|iPhone
243 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Debug|iPhone.Build.0 = Debug|iPhone
244 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
245 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
246 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Debug|x64.ActiveCfg = Debug|iPhone
247 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Debug|x86.ActiveCfg = Debug|iPhone
248 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Release|Any CPU.ActiveCfg = Release|iPhone
249 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Release|ARM.ActiveCfg = Release|iPhone
250 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Release|iPhone.ActiveCfg = Release|iPhone
251 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Release|iPhone.Build.0 = Release|iPhone
252 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
253 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
254 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Release|x64.ActiveCfg = Release|iPhone
255 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}.Release|x86.ActiveCfg = Release|iPhone
256 | EndGlobalSection
257 | GlobalSection(SolutionProperties) = preSolution
258 | HideSolutionNode = FALSE
259 | EndGlobalSection
260 | EndGlobal
261 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.Android/Assets/AboutAssets.txt:
--------------------------------------------------------------------------------
1 | Any raw assets you want to be deployed with your application can be placed in
2 | this directory (and child directories) and given a Build Action of "AndroidAsset".
3 |
4 | These files will be deployed with you package and will be accessible using Android's
5 | AssetManager, like this:
6 |
7 | public class ReadAsset : Activity
8 | {
9 | protected override void OnCreate (Bundle bundle)
10 | {
11 | base.OnCreate (bundle);
12 |
13 | InputStream input = Assets.Open ("my_asset.txt");
14 | }
15 | }
16 |
17 | Additionally, some Android functions will automatically load asset files:
18 |
19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
20 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.Android/ChatBot.Android.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | AnyCPU
7 | 8.0.30703
8 | 2.0
9 | {84ED1784-E9EF-4E09-AE4E-F6DDE072FCC0}
10 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
11 | Library
12 | Properties
13 | ChatBot.Droid
14 | ChatBot.Android
15 | 512
16 | true
17 | Resources\Resource.Designer.cs
18 | Off
19 | Properties\AndroidManifest.xml
20 | true
21 | v7.1
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 | true
31 | full
32 | false
33 | bin\Debug\
34 | DEBUG;TRACE
35 | prompt
36 | 4
37 | True
38 | None
39 | armeabi,armeabi-v7a,x86
40 |
41 |
42 | pdbonly
43 | true
44 | bin\Release\
45 | TRACE
46 | prompt
47 | 4
48 | False
49 | SdkOnly
50 |
51 |
52 |
53 | ..\..\packages\Xamarin.Forms.2.3.5.239-pre3\lib\MonoAndroid10\FormsViewGroup.dll
54 |
55 |
56 |
57 |
58 |
59 | ..\..\packages\Newtonsoft.Json.10.0.2\lib\netstandard1.3\Newtonsoft.Json.dll
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 | ..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.dll
69 |
70 |
71 | ..\..\packages\Xamarin.Android.Support.Annotations.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Annotations.dll
72 |
73 |
74 | ..\..\packages\Xamarin.Android.Support.Compat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Compat.dll
75 |
76 |
77 | ..\..\packages\Xamarin.Android.Support.Core.UI.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.UI.dll
78 |
79 |
80 | ..\..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.Utils.dll
81 |
82 |
83 | ..\..\packages\Xamarin.Android.Support.Design.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Design.dll
84 |
85 |
86 | ..\..\packages\Xamarin.Android.Support.Fragment.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Fragment.dll
87 |
88 |
89 | ..\..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Media.Compat.dll
90 |
91 |
92 | ..\..\packages\Xamarin.Android.Support.Transition.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Transition.dll
93 |
94 |
95 | ..\..\packages\Xamarin.Android.Support.v4.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v4.dll
96 |
97 |
98 | ..\..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.dll
99 |
100 |
101 | ..\..\packages\Xamarin.Android.Support.v7.CardView.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.CardView.dll
102 |
103 |
104 | ..\..\packages\Xamarin.Android.Support.v7.MediaRouter.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.dll
105 |
106 |
107 | ..\..\packages\Xamarin.Android.Support.v7.Palette.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.Palette.dll
108 |
109 |
110 | ..\..\packages\Xamarin.Android.Support.v7.RecyclerView.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.dll
111 |
112 |
113 | ..\..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.dll
114 |
115 |
116 | ..\..\packages\Xamarin.Forms.2.3.5.239-pre3\lib\MonoAndroid10\Xamarin.Forms.Core.dll
117 |
118 |
119 | ..\..\packages\Xamarin.Forms.2.3.5.239-pre3\lib\MonoAndroid10\Xamarin.Forms.Platform.dll
120 |
121 |
122 | ..\..\packages\Xamarin.Forms.2.3.5.239-pre3\lib\MonoAndroid10\Xamarin.Forms.Platform.Android.dll
123 |
124 |
125 | ..\..\packages\Xamarin.Forms.2.3.5.239-pre3\lib\MonoAndroid10\Xamarin.Forms.Xaml.dll
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 | {93e0a8f6-42da-4821-8448-2dbc61ab6a9c}
155 | ChatBot
156 |
157 |
158 |
159 |
160 |
161 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.Android/MainActivity.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | using Android.App;
4 | using Android.Content.PM;
5 | using Android.Runtime;
6 | using Android.Views;
7 | using Android.Widget;
8 | using Android.OS;
9 |
10 | namespace ChatBot.Droid
11 | {
12 | [Activity(Label = "ChatBot", Icon = "@drawable/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
13 | public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
14 | {
15 | protected override void OnCreate(Bundle bundle)
16 | {
17 | TabLayoutResource = Resource.Layout.Tabbar;
18 | ToolbarResource = Resource.Layout.Toolbar;
19 |
20 | base.OnCreate(bundle);
21 |
22 | global::Xamarin.Forms.Forms.Init(this, bundle);
23 | LoadApplication(new App());
24 | }
25 | }
26 | }
27 |
28 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.Android/Properties/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.Android/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 | using Android.App;
5 |
6 | // General Information about an assembly is controlled through the following
7 | // set of attributes. Change these attribute values to modify the information
8 | // associated with an assembly.
9 | [assembly: AssemblyTitle("ChatBot.Android")]
10 | [assembly: AssemblyDescription("")]
11 | [assembly: AssemblyConfiguration("")]
12 | [assembly: AssemblyCompany("")]
13 | [assembly: AssemblyProduct("ChatBot.Android")]
14 | [assembly: AssemblyCopyright("Copyright © 2014")]
15 | [assembly: AssemblyTrademark("")]
16 | [assembly: AssemblyCulture("")]
17 | [assembly: ComVisible(false)]
18 |
19 | // Version information for an assembly consists of the following four values:
20 | //
21 | // Major Version
22 | // Minor Version
23 | // Build Number
24 | // Revision
25 | //
26 | // You can specify all the values or you can default the Build and Revision Numbers
27 | // by using the '*' as shown below:
28 | // [assembly: AssemblyVersion("1.0.*")]
29 | [assembly: AssemblyVersion("1.0.0.0")]
30 | [assembly: AssemblyFileVersion("1.0.0.0")]
31 |
32 | // Add some common permissions, these can be removed if not needed
33 | [assembly: UsesPermission(Android.Manifest.Permission.Internet)]
34 | [assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)]
35 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.Android/Resources/AboutResources.txt:
--------------------------------------------------------------------------------
1 | Images, layout descriptions, binary blobs and string dictionaries can be included
2 | in your application as resource files. Various Android APIs are designed to
3 | operate on the resource IDs instead of dealing with images, strings or binary blobs
4 | directly.
5 |
6 | For example, a sample Android app that contains a user interface layout (main.xml),
7 | an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png)
8 | would keep its resources in the "Resources" directory of the application:
9 |
10 | Resources/
11 | drawable-hdpi/
12 | icon.png
13 |
14 | drawable-ldpi/
15 | icon.png
16 |
17 | drawable-mdpi/
18 | icon.png
19 |
20 | layout/
21 | main.xml
22 |
23 | values/
24 | strings.xml
25 |
26 | In order to get the build system to recognize Android resources, set the build action to
27 | "AndroidResource". The native Android APIs do not operate directly with filenames, but
28 | instead operate on resource IDs. When you compile an Android application that uses resources,
29 | the build system will package the resources for distribution and generate a class called
30 | "Resource" that contains the tokens for each one of the resources included. For example,
31 | for the above Resources layout, this is what the Resource class would expose:
32 |
33 | public class Resource {
34 | public class drawable {
35 | public const int icon = 0x123;
36 | }
37 |
38 | public class layout {
39 | public const int main = 0x456;
40 | }
41 |
42 | public class strings {
43 | public const int first_string = 0xabc;
44 | public const int second_string = 0xbcd;
45 | }
46 | }
47 |
48 | You would then use R.drawable.icon to reference the drawable/icon.png file, or Resource.layout.main
49 | to reference the layout/main.xml file, or Resource.strings.first_string to reference the first
50 | string in the dictionary file values/strings.xml.
51 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.Android/Resources/drawable-hdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.Android/Resources/drawable-hdpi/icon.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.Android/Resources/drawable-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.Android/Resources/drawable-xhdpi/icon.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.Android/Resources/drawable-xxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.Android/Resources/drawable-xxhdpi/icon.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.Android/Resources/drawable/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.Android/Resources/drawable/icon.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.Android/Resources/layout/Tabbar.axml:
--------------------------------------------------------------------------------
1 |
2 |
12 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.Android/Resources/layout/Toolbar.axml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.Android/Resources/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
6 |
7 |
26 |
27 |
30 |
31 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.Android/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/App.xaml:
--------------------------------------------------------------------------------
1 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/App.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.IO;
4 | using System.Linq;
5 | using System.Runtime.InteropServices.WindowsRuntime;
6 | using Windows.ApplicationModel;
7 | using Windows.ApplicationModel.Activation;
8 | using Windows.Foundation;
9 | using Windows.Foundation.Collections;
10 | using Windows.UI.Xaml;
11 | using Windows.UI.Xaml.Controls;
12 | using Windows.UI.Xaml.Controls.Primitives;
13 | using Windows.UI.Xaml.Data;
14 | using Windows.UI.Xaml.Input;
15 | using Windows.UI.Xaml.Media;
16 | using Windows.UI.Xaml.Navigation;
17 |
18 | namespace ChatBot.UWP
19 | {
20 | ///
21 | /// Provides application-specific behavior to supplement the default Application class.
22 | ///
23 | sealed partial class App : Application
24 | {
25 | ///
26 | /// Initializes the singleton application object. This is the first line of authored code
27 | /// executed, and as such is the logical equivalent of main() or WinMain().
28 | ///
29 | public App()
30 | {
31 | this.InitializeComponent();
32 | this.Suspending += OnSuspending;
33 | }
34 |
35 | ///
36 | /// Invoked when the application is launched normally by the end user. Other entry points
37 | /// will be used such as when the application is launched to open a specific file.
38 | ///
39 | /// Details about the launch request and process.
40 | protected override void OnLaunched(LaunchActivatedEventArgs e)
41 | {
42 |
43 | #if DEBUG
44 | if (System.Diagnostics.Debugger.IsAttached)
45 | {
46 | this.DebugSettings.EnableFrameRateCounter = true;
47 | }
48 | #endif
49 |
50 | Frame rootFrame = Window.Current.Content as Frame;
51 |
52 | // Do not repeat app initialization when the Window already has content,
53 | // just ensure that the window is active
54 | if (rootFrame == null)
55 | {
56 | // Create a Frame to act as the navigation context and navigate to the first page
57 | rootFrame = new Frame();
58 |
59 | rootFrame.NavigationFailed += OnNavigationFailed;
60 |
61 | Xamarin.Forms.Forms.Init(e);
62 |
63 | if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
64 | {
65 | //TODO: Load state from previously suspended application
66 | }
67 |
68 | // Place the frame in the current Window
69 | Window.Current.Content = rootFrame;
70 | }
71 |
72 | if (rootFrame.Content == null)
73 | {
74 | // When the navigation stack isn't restored navigate to the first page,
75 | // configuring the new page by passing required information as a navigation
76 | // parameter
77 | rootFrame.Navigate(typeof(MainPage), e.Arguments);
78 | }
79 | // Ensure the current window is active
80 | Window.Current.Activate();
81 | }
82 |
83 | ///
84 | /// Invoked when Navigation to a certain page fails
85 | ///
86 | /// The Frame which failed navigation
87 | /// Details about the navigation failure
88 | void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
89 | {
90 | throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
91 | }
92 |
93 | ///
94 | /// Invoked when application execution is being suspended. Application state is saved
95 | /// without knowing whether the application will be terminated or resumed with the contents
96 | /// of memory still intact.
97 | ///
98 | /// The source of the suspend request.
99 | /// Details about the suspend request.
100 | private void OnSuspending(object sender, SuspendingEventArgs e)
101 | {
102 | var deferral = e.SuspendingOperation.GetDeferral();
103 | //TODO: Save application state and stop any background activity
104 | deferral.Complete();
105 | }
106 | }
107 | }
108 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/LockScreenLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/LockScreenLogo.scale-100.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/LockScreenLogo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/LockScreenLogo.scale-125.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/LockScreenLogo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/LockScreenLogo.scale-150.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/LockScreenLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/LockScreenLogo.scale-200.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/LockScreenLogo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/LockScreenLogo.scale-400.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/SplashScreen.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/SplashScreen.scale-100.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/SplashScreen.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/SplashScreen.scale-125.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/SplashScreen.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/SplashScreen.scale-150.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/SplashScreen.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/SplashScreen.scale-200.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/SplashScreen.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/SplashScreen.scale-400.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Square150x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Square150x150Logo.scale-100.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Square150x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Square150x150Logo.scale-125.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Square150x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Square150x150Logo.scale-150.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Square150x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Square150x150Logo.scale-200.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Square150x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Square150x150Logo.scale-400.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.scale-100.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.scale-125.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.scale-150.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.scale-200.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.scale-400.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.targetsize-16_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.targetsize-16_altform-unplated.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.targetsize-256_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.targetsize-256_altform-unplated.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.targetsize-32_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.targetsize-32_altform-unplated.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.targetsize-48_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Square44x44Logo.targetsize-48_altform-unplated.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/StoreLogo.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Wide310x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Wide310x150Logo.scale-100.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Wide310x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Wide310x150Logo.scale-125.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Wide310x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Wide310x150Logo.scale-150.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Wide310x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Wide310x150Logo.scale-200.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Assets/Wide310x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.UWP/Assets/Wide310x150Logo.scale-400.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/ChatBot.UWP.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | x86
7 | {F3CE66D0-0E0F-4874-A220-DD657EA174B3}
8 | AppContainerExe
9 | Properties
10 | ChatBot.UWP
11 | ChatBot.UWP
12 | en-US
13 | UAP
14 | 10.0.15063.0
15 | 10.0.10586.0
16 | 14
17 | true
18 | 512
19 | {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
20 | ChatBot.UWP_TemporaryKey.pfx
21 |
22 |
23 | true
24 | bin\ARM\Debug\
25 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
26 | ;2008
27 | full
28 | ARM
29 | false
30 | prompt
31 | true
32 |
33 |
34 | bin\ARM\Release\
35 | TRACE;NETFX_CORE;WINDOWS_UWP
36 | true
37 | ;2008
38 | pdbonly
39 | ARM
40 | false
41 | prompt
42 | true
43 | true
44 |
45 |
46 | true
47 | bin\x64\Debug\
48 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
49 | ;2008
50 | full
51 | x64
52 | false
53 | prompt
54 | true
55 |
56 |
57 | bin\x64\Release\
58 | TRACE;NETFX_CORE;WINDOWS_UWP
59 | true
60 | ;2008
61 | pdbonly
62 | x64
63 | false
64 | prompt
65 | true
66 | true
67 |
68 |
69 | true
70 | bin\x86\Debug\
71 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
72 | ;2008
73 | full
74 | x86
75 | false
76 | prompt
77 | true
78 |
79 |
80 | bin\x86\Release\
81 | TRACE;NETFX_CORE;WINDOWS_UWP
82 | true
83 | ;2008
84 | pdbonly
85 | x86
86 | false
87 | prompt
88 | true
89 | true
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 | App.xaml
98 |
99 |
100 | MainPage.xaml
101 |
102 |
103 |
104 |
105 |
106 | Designer
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 | MSBuild:Compile
147 | Designer
148 |
149 |
150 | MSBuild:Compile
151 | Designer
152 |
153 |
154 |
155 |
156 | {93e0a8f6-42da-4821-8448-2dbc61ab6a9c}
157 | ChatBot
158 |
159 |
160 |
161 | 14.0
162 |
163 |
164 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/MainPage.xaml:
--------------------------------------------------------------------------------
1 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/MainPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.IO;
4 | using System.Linq;
5 | using System.Runtime.InteropServices.WindowsRuntime;
6 | using Windows.Foundation;
7 | using Windows.Foundation.Collections;
8 | using Windows.UI.Xaml;
9 | using Windows.UI.Xaml.Controls;
10 | using Windows.UI.Xaml.Controls.Primitives;
11 | using Windows.UI.Xaml.Data;
12 | using Windows.UI.Xaml.Input;
13 | using Windows.UI.Xaml.Media;
14 | using Windows.UI.Xaml.Navigation;
15 |
16 | namespace ChatBot.UWP
17 | {
18 | public sealed partial class MainPage
19 | {
20 | public MainPage()
21 | {
22 | this.InitializeComponent();
23 |
24 | LoadApplication(new ChatBot.App());
25 | }
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Package.appxmanifest:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | ChatBot.UWP
7 | Adam
8 | Assets\StoreLogo.png
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // General Information about an assembly is controlled through the following
6 | // set of attributes. Change these attribute values to modify the information
7 | // associated with an assembly.
8 | [assembly: AssemblyTitle("ChatBot.UWP")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("ChatBot.UWP")]
13 | [assembly: AssemblyCopyright("Copyright © 2015")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // Version information for an assembly consists of the following four values:
18 | //
19 | // Major Version
20 | // Minor Version
21 | // Build Number
22 | // Revision
23 | //
24 | // You can specify all the values or you can default the Build and Revision Numbers
25 | // by using the '*' as shown below:
26 | // [assembly: AssemblyVersion("1.0.*")]
27 | [assembly: AssemblyVersion("1.0.0.0")]
28 | [assembly: AssemblyFileVersion("1.0.0.0")]
29 | [assembly: ComVisible(false)]
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/Properties/Default.rd.xml:
--------------------------------------------------------------------------------
1 |
17 |
18 |
19 |
20 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.UWP/project.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "Microsoft.NETCore.UniversalWindowsPlatform": "5.2.2",
4 | "Xamarin.Forms": "2.3.5.239-pre3"
5 | },
6 | "frameworks": {
7 | "uap10.0": {}
8 | },
9 | "runtimes": {
10 | "win10-arm": {},
11 | "win10-arm-aot": {},
12 | "win10-x86": {},
13 | "win10-x86-aot": {},
14 | "win10-x64": {},
15 | "win10-x64-aot": {}
16 | }
17 | }
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/AppDelegate.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 |
5 | using Foundation;
6 | using UIKit;
7 |
8 | namespace ChatBot.iOS
9 | {
10 | // The UIApplicationDelegate for the application. This class is responsible for launching the
11 | // User Interface of the application, as well as listening (and optionally responding) to
12 | // application events from iOS.
13 | [Register("AppDelegate")]
14 | public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
15 | {
16 | //
17 | // This method is invoked when the application has loaded and is ready to run. In this
18 | // method you should instantiate the window, load the UI into it and then make the window
19 | // visible.
20 | //
21 | // You have 17 seconds to return from this method, or iOS will terminate your application.
22 | //
23 | public override bool FinishedLaunching(UIApplication app, NSDictionary options)
24 | {
25 | global::Xamarin.Forms.Forms.Init();
26 | LoadApplication(new App());
27 |
28 | return base.FinishedLaunching(app, options);
29 | }
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/ChatBot.iOS.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Debug
5 | iPhoneSimulator
6 | 8.0.30703
7 | 2.0
8 | {DBCC6D47-4C3A-483E-98EF-4794C71471E4}
9 | {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
10 | Exe
11 | ChatBot.iOS
12 | Resources
13 | ChatBot.iOS
14 |
15 |
16 |
17 |
18 | true
19 | full
20 | false
21 | bin\iPhoneSimulator\Debug
22 | DEBUG
23 | prompt
24 | 4
25 | false
26 | i386, x86_64
27 | None
28 | true
29 |
30 |
31 | none
32 | true
33 | bin\iPhoneSimulator\Release
34 | prompt
35 | 4
36 | None
37 | i386, x86_64
38 | false
39 |
40 |
41 | true
42 | full
43 | false
44 | bin\iPhone\Debug
45 | DEBUG
46 | prompt
47 | 4
48 | false
49 | ARMv7, ARM64
50 | iPhone Developer
51 | true
52 | Entitlements.plist
53 |
54 |
55 | none
56 | true
57 | bin\iPhone\Release
58 | prompt
59 | 4
60 | ARMv7, ARM64
61 | false
62 | iPhone Developer
63 | Entitlements.plist
64 |
65 |
66 | none
67 | True
68 | bin\iPhone\Ad-Hoc
69 | prompt
70 | 4
71 | False
72 | ARMv7, ARM64
73 | True
74 | Automatic:AdHoc
75 | iPhone Distribution
76 | Entitlements.plist
77 |
78 |
79 | none
80 | True
81 | bin\iPhone\AppStore
82 | prompt
83 | 4
84 | False
85 | ARMv7, ARM64
86 | Automatic:AppStore
87 | iPhone Distribution
88 | Entitlements.plist
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 | ..\..\packages\Xamarin.Forms.2.3.5.239-pre3\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll
124 |
125 |
126 | ..\..\packages\Xamarin.Forms.2.3.5.239-pre3\lib\Xamarin.iOS10\Xamarin.Forms.Platform.dll
127 |
128 |
129 | ..\..\packages\Xamarin.Forms.2.3.5.239-pre3\lib\Xamarin.iOS10\Xamarin.Forms.Platform.iOS.dll
130 |
131 |
132 | ..\..\packages\Xamarin.Forms.2.3.5.239-pre3\lib\Xamarin.iOS10\Xamarin.Forms.Xaml.dll
133 |
134 |
135 |
136 |
137 |
138 | {93e0a8f6-42da-4821-8448-2dbc61ab6a9c}
139 | ChatBot
140 |
141 |
142 |
143 |
144 |
145 |
146 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
147 |
148 |
149 |
150 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | UIDeviceFamily
6 |
7 | 1
8 | 2
9 |
10 | UISupportedInterfaceOrientations
11 |
12 | UIInterfaceOrientationPortrait
13 | UIInterfaceOrientationLandscapeLeft
14 | UIInterfaceOrientationLandscapeRight
15 |
16 | UISupportedInterfaceOrientations~ipad
17 |
18 | UIInterfaceOrientationPortrait
19 | UIInterfaceOrientationPortraitUpsideDown
20 | UIInterfaceOrientationLandscapeLeft
21 | UIInterfaceOrientationLandscapeRight
22 |
23 | MinimumOSVersion
24 | 8.0
25 | CFBundleDisplayName
26 | ChatBot
27 | CFBundleIdentifier
28 | com.yourcompany.ChatBot
29 | CFBundleVersion
30 | 1.0
31 | CFBundleIconFiles
32 |
33 | Icon-60@2x
34 | Icon-60@3x
35 | Icon-76
36 | Icon-76@2x
37 | Default
38 | Default@2x
39 | Default-568h@2x
40 | Default-Portrait
41 | Default-Portrait@2x
42 | Icon-Small-40
43 | Icon-Small-40@2x
44 | Icon-Small-40@3x
45 | Icon-Small
46 | Icon-Small@2x
47 | Icon-Small@3x
48 |
49 | UILaunchStoryboardName
50 | LaunchScreen
51 |
52 |
53 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Main.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 |
5 | using Foundation;
6 | using UIKit;
7 |
8 | namespace ChatBot.iOS
9 | {
10 | public class Application
11 | {
12 | // This is the main entry point of the application.
13 | static void Main(string[] args)
14 | {
15 | // if you want to use a different Application Delegate class from "AppDelegate"
16 | // you can specify it here.
17 | UIApplication.Main(args, null, "AppDelegate");
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // General Information about an assembly is controlled through the following
6 | // set of attributes. Change these attribute values to modify the information
7 | // associated with an assembly.
8 | [assembly: AssemblyTitle("ChatBot.iOS")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("ChatBot.iOS")]
13 | [assembly: AssemblyCopyright("Copyright © 2014")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // Setting ComVisible to false makes the types in this assembly not visible
18 | // to COM components. If you need to access a type in this assembly from
19 | // COM, set the ComVisible attribute to true on that type.
20 | [assembly: ComVisible(false)]
21 |
22 | // The following GUID is for the ID of the typelib if this project is exposed to COM
23 | [assembly: Guid("72bdc44f-c588-44f3-b6df-9aace7daafdd")]
24 |
25 | // Version information for an assembly consists of the following four values:
26 | //
27 | // Major Version
28 | // Minor Version
29 | // Build Number
30 | // Revision
31 | //
32 | // You can specify all the values or you can default the Build and Revision Numbers
33 | // by using the '*' as shown below:
34 | // [assembly: AssemblyVersion("1.0.*")]
35 | [assembly: AssemblyVersion("1.0.0.0")]
36 | [assembly: AssemblyFileVersion("1.0.0.0")]
37 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Resources/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.iOS/Resources/Default-568h@2x.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Resources/Default-Portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.iOS/Resources/Default-Portrait.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Resources/Default-Portrait@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.iOS/Resources/Default-Portrait@2x.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.iOS/Resources/Default.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Resources/Default@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.iOS/Resources/Default@2x.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Resources/Icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.iOS/Resources/Icon-60@2x.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Resources/Icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.iOS/Resources/Icon-60@3x.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Resources/Icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.iOS/Resources/Icon-76.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Resources/Icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.iOS/Resources/Icon-76@2x.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Resources/Icon-Small-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.iOS/Resources/Icon-Small-40.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Resources/Icon-Small-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.iOS/Resources/Icon-Small-40@2x.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Resources/Icon-Small-40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.iOS/Resources/Icon-Small-40@3x.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.iOS/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.iOS/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Resources/Icon-Small@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.iOS/Resources/Icon-Small@3x.png
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/Resources/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.iOS/iTunesArtwork
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/iTunesArtwork@2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamped/XamarinChatBot/44fd77436e37d65e16acea02b6ff6f2d7aa44aeb/ChatBot/ChatBot.iOS/iTunesArtwork@2x
--------------------------------------------------------------------------------
/ChatBot/ChatBot.iOS/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/App.xaml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/App.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 |
3 | namespace ChatBot
4 | {
5 | public partial class App : Application
6 | {
7 | public App()
8 | {
9 | InitializeComponent();
10 |
11 | MainPage = new MainPage();
12 | }
13 |
14 | protected override void OnStart()
15 | {
16 | // Handle when your app starts
17 | }
18 |
19 | protected override void OnSleep()
20 | {
21 | // Handle when your app sleeps
22 | }
23 |
24 | protected override void OnResume()
25 | {
26 | // Handle when your app resumes
27 | }
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/ChatBot.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 14.0
6 | Debug
7 | AnyCPU
8 | {F4F851F2-C48D-4AFB-B138-A4249DB68C34}
9 | Library
10 | Properties
11 | ChatBot
12 | ChatBot
13 | 512
14 | v5.0
15 |
16 |
17 | {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
18 |
19 |
20 |
21 |
22 | true
23 | full
24 | false
25 | bin\Debug\
26 | DEBUG;TRACE
27 | prompt
28 | 4
29 |
30 |
31 | pdbonly
32 | true
33 | bin\Release\
34 | TRACE
35 | prompt
36 | 4
37 |
38 |
39 |
40 | App.xaml
41 |
42 |
43 |
44 | ChatView.xaml
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 | MainPage.xaml
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 | Designer
65 | MSBuild:UpdateDesignTimeXaml
66 |
67 |
68 | Designer
69 | MSBuild:UpdateDesignTimeXaml
70 |
71 |
72 |
73 |
74 | MSBuild:UpdateDesignTimeXaml
75 | Designer
76 |
77 |
78 |
79 |
80 |
81 |
82 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/ChatDataTemplateSelector.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using Xamarin.Forms;
7 | using ChatBot.Framework;
8 |
9 | namespace ChatBot
10 | {
11 | public class ChatDataTemplateSelector : DataTemplateSelector
12 | {
13 | public DataTemplate ServerTemplate { get; set; }
14 |
15 | public DataTemplate ClientTemplate { get; set; }
16 |
17 | protected override DataTemplate OnSelectTemplate(object item, BindableObject container)
18 | {
19 | var model = item as Message;
20 |
21 | switch (model.MessageType)
22 | {
23 | case MessageType.Sent:
24 | return ClientTemplate;
25 | case MessageType.Received:
26 | default:
27 | return ServerTemplate;
28 | }
29 | }
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/ChatView.xaml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/ChatView.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | using Xamarin.Forms;
8 | using Xamarin.Forms.Xaml;
9 |
10 | namespace ChatBot
11 | {
12 | public partial class ChatView : ListView
13 | {
14 | public ChatView()
15 | {
16 | InitializeComponent();
17 | }
18 |
19 | public static readonly BindableProperty MessagesProperty = BindableProperty.Create(
20 | nameof(Messages),
21 | typeof(string),
22 | typeof(Label),
23 | string.Empty);
24 |
25 | private string _messages;
26 | public string Messages
27 | {
28 | get { return _messages; }
29 | set
30 | {
31 | _messages = value;
32 | OnPropertyChanged();
33 | }
34 | }
35 | }
36 | }
--------------------------------------------------------------------------------
/ChatBot/ChatBot/Framework/Activity.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | namespace ChatBot.Framework
8 | {
9 | public class ActivityTypes
10 | {
11 | public const string Message = "message";
12 | public const string ConversationUpdate = "conversationUpdate";
13 | public const string Ping = "ping";
14 | }
15 |
16 |
17 | public class Activity
18 | {
19 | public string Text { get; set; }
20 | public string Type { get; set; }
21 | public string ChannelId { get; set; }
22 | public string Id { get; set; }
23 |
24 | public List MembersAdded { get; set; }
25 |
26 | public string Timestamp { get; set; }
27 | public string LocalTimestamp { get; set; }
28 | public Member Recipient { get; set; }
29 |
30 | public Conversation Conversation { get; set; }
31 |
32 | public Member From { get; set; }
33 |
34 | public string ServiceUrl { get; set; }
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/Framework/Conversation.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | namespace ChatBot.Framework
8 | {
9 | public class Conversation
10 | {
11 | public string Id { get; set; }
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/Framework/HttpClient.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Net.Http;
3 | using System.Threading.Tasks;
4 |
5 | namespace ChatBot.Framework
6 | {
7 | public class HttpClient
8 | {
9 | System.Net.Http.HttpClient _client = new System.Net.Http.HttpClient();
10 |
11 | public async Task Get(HttpRequest request)
12 | {
13 | var response = new HttpResponse();
14 |
15 | var result = await _client.GetAsync(request.Url);
16 |
17 | response.IsSuccess = result.IsSuccessStatusCode;
18 |
19 | if (response.IsSuccess)
20 | response.Data = await result.Content.ReadAsStringAsync();
21 |
22 | return response;
23 | }
24 |
25 | public async Task Post(HttpRequest request)
26 | {
27 | try
28 | {
29 | var response = new HttpResponse();
30 |
31 | var requestMessage = new HttpRequestMessage()
32 | {
33 | Content = new StringContent(request.Data, System.Text.Encoding.UTF8, "application/json"),
34 | RequestUri = new Uri(request.Url),
35 | Method = HttpMethod.Post
36 | };
37 |
38 | var result = await _client.SendAsync(requestMessage);
39 |
40 | response.IsSuccess = result.IsSuccessStatusCode;
41 |
42 | if (response.IsSuccess)
43 | response.Data = await result.Content.ReadAsStringAsync();
44 |
45 | return response;
46 | }
47 | catch (Exception ex)
48 | {
49 |
50 | return null;
51 | }
52 | }
53 | }
54 | }
55 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/Framework/HttpRequest.cs:
--------------------------------------------------------------------------------
1 | namespace ChatBot.Framework
2 | {
3 | public class HttpRequest
4 | {
5 | public string Url { get; set; }
6 | public string Data { get; set; }
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/Framework/HttpResponse.cs:
--------------------------------------------------------------------------------
1 | namespace ChatBot.Framework
2 | {
3 | public class HttpResponse
4 | {
5 | public string Data { get; set; }
6 |
7 | public bool IsSuccess { get; set; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/Framework/Member.cs:
--------------------------------------------------------------------------------
1 | namespace ChatBot.Framework
2 | {
3 | public class Member
4 | {
5 | public string Id { get; set; }
6 | public string Name { get; set; }
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/Framework/Message.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | namespace ChatBot.Framework
8 | {
9 | public class Message
10 | {
11 | public string Text { get; set; }
12 | public MessageType MessageType { get; set; }
13 | public DateTime DateTime { get; set; }
14 | public string UserTime
15 | {
16 | get {
17 | switch (MessageType)
18 | {
19 | case MessageType.Received:
20 | return $"Bot at {DateTime.ToString("HH:mm:ss")}";
21 | case MessageType.Sent:
22 | return $"User at {DateTime.ToString("HH:mm:ss")}";
23 | }
24 |
25 | return string.Empty;
26 |
27 | }
28 | }
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/Framework/MessageType.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | namespace ChatBot.Framework
8 | {
9 | public enum MessageType
10 | {
11 | Sent,
12 | Received
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/Framework/Response.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | namespace ChatBot.Framework
8 | {
9 | public class Response
10 | {
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/MainPage.xaml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/MainPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using Xamarin.Forms;
7 | using ChatBot.ViewModel;
8 |
9 | namespace ChatBot
10 | {
11 | public partial class MainPage : ContentPage
12 | {
13 | private MainViewModel _model = new MainViewModel();
14 | public MainPage()
15 | {
16 | InitializeComponent();
17 | this.BindingContext = _model;
18 | }
19 |
20 | protected override async void OnAppearing()
21 | {
22 | base.OnAppearing();
23 | await _model.StartConversation();
24 | }
25 |
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/Model/MainModel.cs:
--------------------------------------------------------------------------------
1 | using ChatBot.Framework;
2 | using Newtonsoft.Json;
3 | using System;
4 | using System.Collections.Generic;
5 | using System.Linq;
6 | using System.Text;
7 | using System.Threading.Tasks;
8 |
9 | namespace ChatBot.Model
10 | {
11 | public class MainModel
12 | {
13 | private readonly HttpClient _httpClient = new HttpClient();
14 |
15 | public async Task EnsureConversationEstablished()
16 | {
17 | var activity = new Activity()
18 | {
19 | Type = ActivityTypes.ConversationUpdate,
20 | MembersAdded = new List() { new Member() { Id = "781ajk076fln20n86", Name = "Bot" } },
21 | Id = Guid.NewGuid().ToString(),
22 | ChannelId = "EmulatorTestChannelId",
23 | Timestamp = DateTime.UtcNow.ToString("o"),
24 | LocalTimestamp = DateTime.Now.ToString("o"),
25 | Recipient = new Member() { Id = "781ajk076fln20n86", Name = "Bot" },
26 | Conversation = new Conversation() { Id = "3kcmig40nn8hiiad3" },
27 | From = new Member() { Id = "default-user", Name = "User" },
28 | ServiceUrl = "https://localhost:44338"
29 | };
30 |
31 | var request = new HttpRequest()
32 | {
33 | // This is referencing a local instance
34 | // You would use directline, if using the Azure Bot Service
35 | Url = "https://localhost:44338/api/messages",
36 | Data = JsonConvert.SerializeObject(activity)
37 | };
38 |
39 | var response = await _httpClient.Post(request);
40 |
41 |
42 |
43 | activity = new Activity()
44 | {
45 | Type = ActivityTypes.ConversationUpdate,
46 | MembersAdded = new List() { new Member() { Id = "default-user", Name = "User" } },
47 | Id = Guid.NewGuid().ToString(),
48 | ChannelId = "EmulatorTestChannelId",
49 | Timestamp = DateTime.UtcNow.ToString("o"),
50 | LocalTimestamp = DateTime.Now.ToString("o"),
51 | Recipient = new Member() { Id = "781ajk076fln20n86", Name = "Bot" },
52 | Conversation = new Conversation() { Id = "3kcmig40nn8hiiad3" },
53 | From = new Member() { Id = "default-user", Name = "User" },
54 | ServiceUrl = "https://localhost:44338"
55 | };
56 |
57 | request = new HttpRequest()
58 | {
59 | // This is referencing a local instance
60 | // You would use directline, if using the Azure Bot Service
61 | Url = "https://localhost:44338/api/messages",
62 | Data = JsonConvert.SerializeObject(activity)
63 | };
64 |
65 | response = await _httpClient.Post(request);
66 | }
67 |
68 | public async Task Ping()
69 | {
70 | var activity = new Activity()
71 | {
72 | Type = ActivityTypes.Ping,
73 | ChannelId = "EmulatorTestChannelId",
74 | Id = Guid.NewGuid().ToString()
75 | };
76 |
77 | var data = JsonConvert.SerializeObject(activity);
78 |
79 | var response = await _httpClient.Post(new HttpRequest()
80 | {
81 | // This is referencing a local instance
82 | // You would use directline, if using the Azure Bot Service
83 | Url = "https://localhost:44338/api/messages",
84 | Data = data
85 | });
86 | }
87 |
88 | public async Task SendMessage(string message)
89 | {
90 | var activity = new Activity()
91 | {
92 | Text = message,
93 | Type = ActivityTypes.Message,
94 | ChannelId = "EmulatorTestChannelId",
95 | Id = Guid.NewGuid().ToString(),
96 | Recipient = new Member() { Id = "781ajk076fln20n86", Name = "Bot" },
97 | From = new Member() { Id = "default-user", Name = "User" },
98 | Timestamp = DateTime.UtcNow.ToString("o"),
99 | LocalTimestamp = DateTime.Now.ToString("o"),
100 | Conversation = new Conversation() { Id = "3kcmig40nn8hiiad3" },
101 | ServiceUrl = "https://localhost:44338"
102 | };
103 |
104 | var data = JsonConvert.SerializeObject(activity);
105 |
106 | var response = await _httpClient.Post(new HttpRequest()
107 | {
108 | // This is referencing a local instance
109 | // You would use directline, if using the Azure Bot Service
110 | Url = "https://localhost:44338/api/messages",
111 | Data = data
112 | });
113 |
114 | var text = string.Empty;
115 |
116 | if (!string.IsNullOrEmpty(response?.Data))
117 | {
118 | var activityResponse = JsonConvert.DeserializeObject(response.Data);
119 |
120 | text = activityResponse.Text;
121 | }
122 |
123 | return new Message()
124 | {
125 | MessageType = MessageType.Received,
126 | Text = text,
127 | DateTime = DateTime.Now
128 | };
129 |
130 |
131 | }
132 |
133 | }
134 | }
135 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Resources;
2 | using System.Reflection;
3 | using System.Runtime.CompilerServices;
4 | using System.Runtime.InteropServices;
5 | using Xamarin.Forms.Xaml;
6 |
7 | // General Information about an assembly is controlled through the following
8 | // set of attributes. Change these attribute values to modify the information
9 | // associated with an assembly.
10 | [assembly: AssemblyTitle("ChatBot")]
11 | [assembly: AssemblyDescription("")]
12 | [assembly: AssemblyConfiguration("")]
13 | [assembly: AssemblyCompany("")]
14 | [assembly: AssemblyProduct("ChatBot")]
15 | [assembly: AssemblyCopyright("Copyright © 2014")]
16 | [assembly: AssemblyTrademark("")]
17 | [assembly: AssemblyCulture("")]
18 | [assembly: NeutralResourcesLanguage("en")]
19 |
20 | // Version information for an assembly consists of the following four values:
21 | //
22 | // Major Version
23 | // Minor Version
24 | // Build Number
25 | // Revision
26 | //
27 | // You can specify all the values or you can default the Build and Revision Numbers
28 | // by using the '*' as shown below:
29 | // [assembly: AssemblyVersion("1.0.*")]
30 | [assembly: AssemblyVersion("1.0.0.0")]
31 | [assembly: AssemblyFileVersion("1.0.0.0")]
32 |
33 | [assembly: XamlCompilation(XamlCompilationOptions.Compile)]
--------------------------------------------------------------------------------
/ChatBot/ChatBot/ViewModel/MainViewModel.cs:
--------------------------------------------------------------------------------
1 | using ChatBot.Framework;
2 | using ChatBot.Model;
3 | using System;
4 | using System.Collections.ObjectModel;
5 | using System.ComponentModel;
6 | using System.Runtime.CompilerServices;
7 | using System.Threading.Tasks;
8 | using Xamarin.Forms;
9 |
10 | namespace ChatBot.ViewModel
11 | {
12 | public class MainViewModel : INotifyPropertyChanged
13 | {
14 | private MainModel _model = new MainModel();
15 |
16 | public MainViewModel()
17 | {
18 | Messages = new ObservableCollection();
19 | }
20 |
21 | public ObservableCollection Messages { get; set; }
22 |
23 | private string _text = string.Empty;
24 |
25 | public event PropertyChangedEventHandler PropertyChanged;
26 | private void OnPropertyChanged([CallerMemberName] string name = "")
27 | {
28 | PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(name));
29 | }
30 |
31 | public string Text
32 | {
33 | get
34 | {
35 | return _text;
36 | }
37 | set
38 | {
39 | _text = value;
40 | OnPropertyChanged();
41 | }
42 | }
43 |
44 | public async Task StartConversation()
45 | {
46 | await _model.EnsureConversationEstablished();
47 | }
48 |
49 | public Command SendCommand
50 | {
51 | get
52 | {
53 | return new Command(async () =>
54 | {
55 | Messages.Add(new Message()
56 | {
57 | DateTime = DateTime.Now,
58 | Text = Text,
59 | MessageType = MessageType.Sent
60 | });
61 |
62 | var receivedMessage = await _model.SendMessage(Text);
63 |
64 | Messages.Add(receivedMessage);
65 |
66 | Text = string.Empty;
67 | });
68 | }
69 | }
70 | }
71 | }
72 |
--------------------------------------------------------------------------------
/ChatBot/ChatBot/project.json:
--------------------------------------------------------------------------------
1 | {
2 | "supports": {},
3 | "dependencies": {
4 | "Microsoft.NETCore.Portable.Compatibility": "1.0.1",
5 | "NETStandard.Library": "1.6.0",
6 | "Newtonsoft.Json": "10.0.2",
7 | "Xamarin.Forms": "2.3.5.239-pre3"
8 | },
9 | "frameworks": {
10 | "netstandard1.3": {}
11 | }
12 | }
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020 Adam
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------