embulk-output-azuresearch 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +5 -0
- data/ChangeLog +3 -0
- data/Gemfile +2 -0
- data/LICENSE.txt +21 -0
- data/README.md +211 -0
- data/Rakefile +3 -0
- data/VERSION +1 -0
- data/embulk-output-azuresearch.gemspec +20 -0
- data/lib/embulk/output/azuresearch.rb +133 -0
- data/lib/embulk/output/azuresearch/client.rb +38 -0
- data/lib/embulk/output/azuresearch/constants.rb +5 -0
- data/samples/config-csv2azuresearch.yml +28 -0
- data/samples/create_sample_index.sh +19 -0
- data/samples/sample_01.csv +223 -0
- metadata +114 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5a3c615c255e48b5cd9de2b415051bfe4afc69ea
|
4
|
+
data.tar.gz: 4a0c03030e0ea2bb7153d4bf481eae8ad7454a99
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ea2d4a3072ab356568a39d8fb4bc54eaa9eaf994c3f32472c4d491c508b4df5a90d39644916218d12a7dec6dc26dc1863b3b0caf2066bad900adfeb388f7fcd9
|
7
|
+
data.tar.gz: 073f7269cb3039c3d8915f912e257c4b82c7252948d6f2e8b930242c8b09b34298645feadaf51311b94d667df177fc0606d153b05b3a5860d49de09ed1450fe0
|
data/ChangeLog
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
|
2
|
+
MIT License
|
3
|
+
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
5
|
+
a copy of this software and associated documentation files (the
|
6
|
+
"Software"), to deal in the Software without restriction, including
|
7
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
8
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
9
|
+
permit persons to whom the Software is furnished to do so, subject to
|
10
|
+
the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be
|
13
|
+
included in all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
16
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
17
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
18
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
19
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
20
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
21
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,211 @@
|
|
1
|
+
# Azure Search output plugin for Embulk
|
2
|
+
|
3
|
+
embulk-output-azuresearch is an embulk output plugin that dumps records to Azure Search. Embulk is a open-source bulk data loader that helps data transfer between various databases, storages, file formats, and cloud services. See [Embulk documentation](http://www.embulk.org/docs/) for details.
|
4
|
+
|
5
|
+
## Overview
|
6
|
+
|
7
|
+
* **Plugin type**: output
|
8
|
+
* **Load all or nothing**: no
|
9
|
+
* **Resume supported**: no
|
10
|
+
* **Cleanup supported**: yes
|
11
|
+
|
12
|
+
## Installation
|
13
|
+
|
14
|
+
$ gem install fluent-plugin-azuresearch
|
15
|
+
|
16
|
+
## Configuration
|
17
|
+
|
18
|
+
### Azure Search
|
19
|
+
|
20
|
+
To use Microsoft Azure Search, you must create an Azure Search service in the Azure Portal. Also you must have an index, persisted storage of documents to which embulk-output-azuresearch writes event stream out. Here are instructions:
|
21
|
+
|
22
|
+
* [Create a service](https://azure.microsoft.com/en-us/documentation/articles/search-create-service-portal/)
|
23
|
+
* [Create an index](https://azure.microsoft.com/en-us/documentation/articles/search-what-is-an-index/)
|
24
|
+
|
25
|
+
|
26
|
+
<u>Sample Index Schema: sampleindex01</u>
|
27
|
+
|
28
|
+
```json
|
29
|
+
{
|
30
|
+
"name": "sampleindex01",
|
31
|
+
"fields": [
|
32
|
+
{ "name":"id", "type":"Edm.String", "key": true, "searchable": false },
|
33
|
+
{ "name":"title", "type":"Edm.String", "analyzer":"en.microsoft" },
|
34
|
+
{ "name":"speakers", "type":"Edm.String" },
|
35
|
+
{ "name":"url", "type":"Edm.String", "searchable": false, "filterable":false, "sortable":false, "facetable":false },
|
36
|
+
{ "name":"text", "type":"Edm.String", "filterable":false, "sortable":false, "facetable":false, "analyzer":"en.microsoft" }
|
37
|
+
]
|
38
|
+
}
|
39
|
+
```
|
40
|
+
|
41
|
+
|
42
|
+
### Embulk Configuration (config.yml)
|
43
|
+
|
44
|
+
```yaml
|
45
|
+
out:
|
46
|
+
type: azuresearch
|
47
|
+
endpoint: https://yoichikademo.search.windows.net
|
48
|
+
api_key: 9E55964F8254BB4504DX3F66A39AF5EB
|
49
|
+
search_index: sampleindex01
|
50
|
+
column_names: id,title,speakers,text,url
|
51
|
+
key_names: id,title,speakers,description,link
|
52
|
+
```
|
53
|
+
|
54
|
+
* **endpoint (required)** - Azure Search service endpoint URI
|
55
|
+
* **api\_key (required)** - Azure Search API key
|
56
|
+
* **search\_index (required)** - Azure Search Index name to insert records
|
57
|
+
* **column\_names (required)** - Column names in a target Azure search index. Each column needs to be separated by a comma.
|
58
|
+
* **key\_names (optional)** - Default:nil. Key names in incomming record to insert. Each key needs to be separated by a comma. By default, **key\_names** is as same as **column\_names**
|
59
|
+
|
60
|
+
|
61
|
+
## Sample Configurations
|
62
|
+
|
63
|
+
### (1) Case: column_names and key_names are same
|
64
|
+
|
65
|
+
Suppose you have the following config.yml and sample azure search index schema written above:
|
66
|
+
|
67
|
+
<u>config.yml</u>
|
68
|
+
|
69
|
+
```yaml
|
70
|
+
in:
|
71
|
+
type: file
|
72
|
+
path_prefix: samples/sample_01.csv
|
73
|
+
parser:
|
74
|
+
charset: UTF-8
|
75
|
+
newline: CRLF
|
76
|
+
type: csv
|
77
|
+
delimiter: ','
|
78
|
+
quote: '"'
|
79
|
+
escape: '"'
|
80
|
+
null_string: 'NULL'
|
81
|
+
trim_if_not_quoted: false
|
82
|
+
skip_header_lines: 1
|
83
|
+
allow_extra_columns: false
|
84
|
+
allow_optional_columns: false
|
85
|
+
columns:
|
86
|
+
- {name: id, type: string}
|
87
|
+
- {name: title, type: string}
|
88
|
+
- {name: speakers, type: string}
|
89
|
+
- {name: text, type: string}
|
90
|
+
- {name: url, type: string}
|
91
|
+
out:
|
92
|
+
type: azuresearch
|
93
|
+
endpoint: https://yoichikademo.search.windows.net
|
94
|
+
api_key: 9E55964F8254BBXX04D53F66A39AF5EB
|
95
|
+
search_index: sampleindex01
|
96
|
+
column_names: id,title,speakers,text,url
|
97
|
+
```
|
98
|
+
|
99
|
+
The plugin will dump records out to Azure Ssearch like this:
|
100
|
+
|
101
|
+
<u>Input CSV</u>
|
102
|
+
|
103
|
+
```csv
|
104
|
+
id,title,speakers,text,url
|
105
|
+
1,Moving to the Cloud,Narayan Annamalai,Benefits of moving your applications to cloud,https://s.ch9.ms/Events/Build/2016/P576
|
106
|
+
2,Building Big Data Applications using Spark and Hadoop,Maxim Lukiyanov,How to leverage Spark to build intelligence into your application,https://s.ch9.ms/Events/Build/2016/P420
|
107
|
+
3,Service Fabric Deploying and Managing Applications with Service Fabric,Chacko Daniel,Service Fabric deploys and manages distributed applications built as microservices,https://s.ch9.ms/Events/Build/2016/P431
|
108
|
+
```
|
109
|
+
|
110
|
+
<u>Output JSON Body to Azure Search</u>
|
111
|
+
|
112
|
+
```json
|
113
|
+
{"value":
|
114
|
+
[
|
115
|
+
{"id":"1","title":"Moving to the Cloud","speakers":"Narayan Annamalai","text":"Benefits of moving your applications to cloud","url":"https://s.ch9.ms/Events/Build/2016/P576","@search.action":"mergeOrUpload"},
|
116
|
+
{"id":"2","title":"Building Big Data Applications using Spark and Hadoop","speakers":"Maxim Lukiyanov","text":"How to leverage Spark to build intelligence into your application","url":"https://s.ch9.ms/Events/Build/2016/P420","@search.action":"mergeOrUpload"},
|
117
|
+
{"id":"3","title":"Service Fabric Deploying and Managing Applications with Service Fabric","speakers":"Chacko Daniel","text":"Service Fabric deploys and manages distributed applications built as microservices","url":"https://s.ch9.ms/Events/Build/2016/P431","@search.action":"mergeOrUpload"}
|
118
|
+
]
|
119
|
+
}
|
120
|
+
```
|
121
|
+
|
122
|
+
### (2) Case: column_names and key_names are NOT same
|
123
|
+
|
124
|
+
Suppose you have the following config.yml and sample azure search index schema written above:
|
125
|
+
|
126
|
+
<u>config.yml</u>
|
127
|
+
|
128
|
+
```yaml
|
129
|
+
in:
|
130
|
+
type: file
|
131
|
+
path_prefix: samples/sample_01.csv
|
132
|
+
parser:
|
133
|
+
charset: UTF-8
|
134
|
+
newline: CRLF
|
135
|
+
type: csv
|
136
|
+
delimiter: ','
|
137
|
+
quote: '"'
|
138
|
+
escape: '"'
|
139
|
+
null_string: 'NULL'
|
140
|
+
trim_if_not_quoted: false
|
141
|
+
skip_header_lines: 1
|
142
|
+
allow_extra_columns: false
|
143
|
+
allow_optional_columns: false
|
144
|
+
columns:
|
145
|
+
- {name: id, type: string}
|
146
|
+
- {name: title, type: string}
|
147
|
+
- {name: speakers, type: string}
|
148
|
+
- {name: description, type: string}
|
149
|
+
- {name: link, type: string}
|
150
|
+
out:
|
151
|
+
type: azuresearch
|
152
|
+
endpoint: https://yoichikademo.search.windows.net
|
153
|
+
api_key: 9E55964F8254BBXX04D53F66A39AF5EB
|
154
|
+
search_index: sampleindex01
|
155
|
+
column_names: id,title,speakers,description,link
|
156
|
+
key_names: id,title,speakers,text,url
|
157
|
+
```
|
158
|
+
|
159
|
+
|
160
|
+
The plugin will dump records out to Azure Ssearch like this:
|
161
|
+
|
162
|
+
<u>Input CSV</u>
|
163
|
+
|
164
|
+
```csv
|
165
|
+
id,title,speakers,description,link
|
166
|
+
1,Moving to the Cloud,Narayan Annamalai,Benefits of moving your applications to cloud,https://s.ch9.ms/Events/Build/2016/P576
|
167
|
+
2,Building Big Data Applications using Spark and Hadoop,Maxim Lukiyanov,How to leverage Spark to build intelligence into your application,https://s.ch9.ms/Events/Build/2016/P420
|
168
|
+
3,Service Fabric Deploying and Managing Applications with Service Fabric,Chacko Daniel,Service Fabric deploys and manages distributed applications built as microservices,https://s.ch9.ms/Events/Build/2016/P431
|
169
|
+
```
|
170
|
+
|
171
|
+
<u>Output JSON Body to Azure Search</u>
|
172
|
+
|
173
|
+
```json
|
174
|
+
{"value":
|
175
|
+
[
|
176
|
+
{"id":"1","title":"Moving to the Cloud","speakers":"Narayan Annamalai","text":"Benefits of moving your applications to cloud","url":"https://s.ch9.ms/Events/Build/2016/P576","@search.action":"mergeOrUpload"},
|
177
|
+
{"id":"2","title":"Building Big Data Applications using Spark and Hadoop","speakers":"Maxim Lukiyanov","text":"How to leverage Spark to build intelligence into your application","url":"https://s.ch9.ms/Events/Build/2016/P420","@search.action":"mergeOrUpload"},
|
178
|
+
{"id":"3","title":"Service Fabric Deploying and Managing Applications with Service Fabric","speakers":"Chacko Daniel","text":"Service Fabric deploys and manages distributed applications built as microservices","url":"https://s.ch9.ms/Events/Build/2016/P431","@search.action":"mergeOrUpload"}
|
179
|
+
]
|
180
|
+
}
|
181
|
+
```
|
182
|
+
|
183
|
+
|
184
|
+
## Build, Install, and Run
|
185
|
+
|
186
|
+
```
|
187
|
+
$ rake
|
188
|
+
|
189
|
+
$ embulk gem install pkg/embulk-output-azuresearch-0.1.0.gem
|
190
|
+
|
191
|
+
$ embulk preview config.yml
|
192
|
+
|
193
|
+
$ embulk run config.yml
|
194
|
+
|
195
|
+
```
|
196
|
+
|
197
|
+
## Contributing
|
198
|
+
|
199
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/yokawasa/embulk-output-azuresearch.
|
200
|
+
|
201
|
+
## Copyright
|
202
|
+
|
203
|
+
<table>
|
204
|
+
<tr>
|
205
|
+
<td>Copyright</td><td>Copyright (c) 2016- Yoichi Kawasaki</td>
|
206
|
+
</tr>
|
207
|
+
<tr>
|
208
|
+
<td>License</td><td>MIT</td>
|
209
|
+
</tr>
|
210
|
+
</table>
|
211
|
+
|
data/Rakefile
ADDED
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.0
|
@@ -0,0 +1,20 @@
|
|
1
|
+
|
2
|
+
Gem::Specification.new do |spec|
|
3
|
+
spec.name = "embulk-output-azuresearch"
|
4
|
+
spec.version = File.read("VERSION").strip
|
5
|
+
spec.authors = ["Yoichi Kawasaki"]
|
6
|
+
spec.email = ["yoichi.kawasaki@outlook.com"]
|
7
|
+
spec.summary = "Azure Search output plugin for Embulk"
|
8
|
+
spec.description = "Dumps records to Azure Search"
|
9
|
+
spec.licenses = ["MIT"]
|
10
|
+
spec.homepage = "https://github.com/yokawasa/embulk-output-azuresearch"
|
11
|
+
|
12
|
+
spec.files = `git ls-files`.split("\n")
|
13
|
+
spec.test_files = spec.files.grep(%r{^(test|spec)/})
|
14
|
+
spec.require_paths = ["lib"]
|
15
|
+
|
16
|
+
spec.add_dependency "rest-client"
|
17
|
+
spec.add_development_dependency 'embulk', ['>= 0.8.13']
|
18
|
+
spec.add_development_dependency 'bundler', ['>= 1.10.6']
|
19
|
+
spec.add_development_dependency 'rake', ['>= 10.0']
|
20
|
+
end
|
@@ -0,0 +1,133 @@
|
|
1
|
+
module Embulk
|
2
|
+
module Output
|
3
|
+
|
4
|
+
require 'time'
|
5
|
+
require 'json'
|
6
|
+
require_relative 'azuresearch/client'
|
7
|
+
|
8
|
+
class Azuresearch < OutputPlugin
|
9
|
+
Plugin.register_output("azuresearch", self)
|
10
|
+
|
11
|
+
def self.transaction(config, schema, count, &control)
|
12
|
+
Embulk.logger.info "Azuresearch output transaction start"
|
13
|
+
# configuration code:
|
14
|
+
task = {
|
15
|
+
'endpoint' => config.param('endpoint', :string),
|
16
|
+
'api_key' => config.param('api_key', :string),
|
17
|
+
'search_index' => config.param('search_index', :string),
|
18
|
+
'column_names' => config.param('column_names', :string),
|
19
|
+
'key_names' => config.param('key_names', :string, :default => nil),
|
20
|
+
}
|
21
|
+
# param validation
|
22
|
+
raise ConfigError, 'no endpoint' if task['endpoint'].empty?
|
23
|
+
raise ConfigError, 'no api_key' if task['api_key'].empty?
|
24
|
+
raise ConfigError, 'no search_index' if task['search_index'].empty?
|
25
|
+
raise ConfigError, 'no column_names' if task['column_names'].empty?
|
26
|
+
|
27
|
+
# resumable output:
|
28
|
+
# resume(task, schema, count, &control)
|
29
|
+
# non-resumable output:
|
30
|
+
task_reports = yield(task)
|
31
|
+
Embulk.logger.info "Azuresearch output finished. Task reports = #{task_reports.to_json}"
|
32
|
+
next_config_diff = {}
|
33
|
+
return next_config_diff
|
34
|
+
end
|
35
|
+
|
36
|
+
#def self.resume(task, schema, count, &control)
|
37
|
+
# task_reports = yield(task)
|
38
|
+
#
|
39
|
+
# next_config_diff = {}
|
40
|
+
# return next_config_diff
|
41
|
+
#end
|
42
|
+
|
43
|
+
# init is called in initialize(task, schema, index)
|
44
|
+
def init
|
45
|
+
# initialization code:
|
46
|
+
Embulk.logger.info "Azuresearch output init"
|
47
|
+
@start_time = Time.now
|
48
|
+
@recordnum = 0
|
49
|
+
@successnum = 0
|
50
|
+
|
51
|
+
@search_index = task['search_index']
|
52
|
+
@column_names = task['column_names'].split(',')
|
53
|
+
@key_names = task['key_names'].nil? ? @column_names : task['key_names'].split(',')
|
54
|
+
raise ConfigError, 'NOT match keys number: column_names and key_names' if @key_names.length != @column_names.length
|
55
|
+
|
56
|
+
@client=AzureSearch::Client::new( task['endpoint'], task['api_key'] )
|
57
|
+
end
|
58
|
+
|
59
|
+
def close
|
60
|
+
end
|
61
|
+
|
62
|
+
# called for each page in each task
|
63
|
+
def add(page)
|
64
|
+
|
65
|
+
# output code:
|
66
|
+
documents = []
|
67
|
+
page.each do |record|
|
68
|
+
hash = Hash[schema.names.zip(record)]
|
69
|
+
document = {}
|
70
|
+
@key_names.each_with_index do |key,i|
|
71
|
+
document[@column_names[i]] = hash[key]
|
72
|
+
end
|
73
|
+
documents.push(document)
|
74
|
+
@recordnum += 1
|
75
|
+
if documents.length >= AzureSearch::MAX_DOCS_PER_INDEX_UPLOAD
|
76
|
+
add_documents_to_azuresearch(documents)
|
77
|
+
documents = []
|
78
|
+
end
|
79
|
+
end
|
80
|
+
if documents.length > 0
|
81
|
+
add_documents_to_azuresearch(documents)
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
def finish
|
86
|
+
Embulk.logger.info "AzureSearch output finish"
|
87
|
+
@finish_time = Time.now
|
88
|
+
end
|
89
|
+
|
90
|
+
def abort
|
91
|
+
end
|
92
|
+
|
93
|
+
def commit
|
94
|
+
Embulk.logger.info "AzureSearch output commit"
|
95
|
+
elapsed_time = @finish_time - @start_time
|
96
|
+
task_report = {
|
97
|
+
"total_records" => @recordnum,
|
98
|
+
"success" => @successnum,
|
99
|
+
"skip_or_error" => (@recordnum - @successnum),
|
100
|
+
"elapsed_time" => elapsed_time,
|
101
|
+
}
|
102
|
+
return task_report
|
103
|
+
end
|
104
|
+
|
105
|
+
def add_documents_to_azuresearch(documents)
|
106
|
+
begin
|
107
|
+
res = @client.add_documents(@search_index, documents)
|
108
|
+
if res.code == 200
|
109
|
+
# all docs are successfully inserted/updated
|
110
|
+
@successnum += documents.length
|
111
|
+
return
|
112
|
+
end
|
113
|
+
# parse response msg to figure out which docs is wrong only in case response code != 200
|
114
|
+
resdict = JSON.parse(res)
|
115
|
+
if (!resdict.key?('value') )
|
116
|
+
Embulk.logger.error { "Unknown Reponse format, documents=>" + documents.to_json }
|
117
|
+
return
|
118
|
+
end
|
119
|
+
resdict['value'].each do |docstatus|
|
120
|
+
if !docstatus['status']
|
121
|
+
Embulk.logger.error { "Add document failure, dockey: #{docstatus['key']}, code: #{docstatus['statusCode']}, errmsg: #{docstatus['errorMessage']}" }
|
122
|
+
else
|
123
|
+
@successnum += 1
|
124
|
+
end
|
125
|
+
end
|
126
|
+
rescue Exception => ex
|
127
|
+
Embulk.logger.error { "UnknownError: '#{ex}', documents=>" + documents.to_json }
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
require_relative 'constants'
|
2
|
+
|
3
|
+
module AzureSearch
|
4
|
+
class Client
|
5
|
+
def initialize (api_url, api_key, api_version=AzureSearch::API_VERSION)
|
6
|
+
require 'rest-client'
|
7
|
+
require 'json'
|
8
|
+
@api_url = api_url
|
9
|
+
@api_version = api_version
|
10
|
+
@headers = {
|
11
|
+
'Content-Type' => "application/json; charset=UTF-8",
|
12
|
+
'Api-Key' => api_key,
|
13
|
+
'Accept' => "application/json",
|
14
|
+
'Accept-Charset' => "UTF-8"
|
15
|
+
}
|
16
|
+
end
|
17
|
+
|
18
|
+
def add_documents(index_name, documents, merge=true)
|
19
|
+
raise ConfigError, 'no index_name' if index_name.empty?
|
20
|
+
raise ConfigError, 'no documents' if documents.empty?
|
21
|
+
action = merge ? 'mergeOrUpload' : 'upload'
|
22
|
+
for document in documents
|
23
|
+
document['@search.action'] = action
|
24
|
+
end
|
25
|
+
req_body = { :value => documents }.to_json
|
26
|
+
puts req_body
|
27
|
+
# p "REQ_BODY= #{req_body}"
|
28
|
+
# p "URI= #{@api_url}/indexes/#{index_name}/docs/index?api-version=#{@api_version}"
|
29
|
+
res = RestClient.post(
|
30
|
+
"#{@api_url}/indexes/#{index_name}/docs/index?api-version=#{@api_version}",
|
31
|
+
req_body,
|
32
|
+
@headers)
|
33
|
+
res
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
in:
|
2
|
+
type: file
|
3
|
+
path_prefix: samples/sample_01.csv
|
4
|
+
parser:
|
5
|
+
charset: UTF-8
|
6
|
+
newline: CRLF
|
7
|
+
type: csv
|
8
|
+
delimiter: ','
|
9
|
+
quote: '"'
|
10
|
+
escape: '"'
|
11
|
+
null_string: 'NULL'
|
12
|
+
trim_if_not_quoted: false
|
13
|
+
skip_header_lines: 1
|
14
|
+
allow_extra_columns: false
|
15
|
+
allow_optional_columns: false
|
16
|
+
columns:
|
17
|
+
- {name: id, type: string}
|
18
|
+
- {name: title, type: string}
|
19
|
+
- {name: speakers, type: string}
|
20
|
+
- {name: description, type: string}
|
21
|
+
- {name: link, type: string}
|
22
|
+
out:
|
23
|
+
type: azuresearch
|
24
|
+
endpoint: https://yoichikademo.search.windows.net
|
25
|
+
api_key: 9E55964F8254BBXX04D53F66A39AF5EB
|
26
|
+
search_index: sampleindex01
|
27
|
+
column_names: id,title,speakers,text,url
|
28
|
+
key_names: id,title,speakers,description,link
|
@@ -0,0 +1,19 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
SERVICE_NAME='yoichikademo'
|
4
|
+
API_KEY='9E55964F8254BBXX04D53F66A39AF5EB'
|
5
|
+
|
6
|
+
URL="https://${SERVICE_NAME}.search.windows.net/indexes?api-version=2015-02-28"
|
7
|
+
curl -s\
|
8
|
+
-H "Content-Type: application/json"\
|
9
|
+
-H "api-key: ${API_KEY}"\
|
10
|
+
-XPOST $URL -d'{
|
11
|
+
"name": "sampleindex01",
|
12
|
+
"fields": [
|
13
|
+
{ "name":"id", "type":"Edm.String", "key": true, "searchable": false, "filterable":true, "facetable":false },
|
14
|
+
{ "name":"title", "type":"Edm.String", "searchable": true, "filterable":true, "sortable":true, "facetable":false, "analyzer":"en.microsoft" },
|
15
|
+
{ "name":"speakers", "type":"Edm.String", "searchable": false },
|
16
|
+
{ "name":"url", "type":"Edm.String", "searchable": false, "filterable":false, "sortable":false, "facetable":false },
|
17
|
+
{ "name":"text", "type":"Edm.String", "searchable": true, "filterable":false, "sortable":false, "facetable":false, "analyzer":"en.microsoft" }
|
18
|
+
]
|
19
|
+
}'
|
@@ -0,0 +1,223 @@
|
|
1
|
+
id,title,speakers,description,link
|
2
|
+
1,What?? new with Contextual Sensing,Rinku Sreedhar,"<p>This session includes 3 topics a) Future strategy for Contextual Sensing APIs and plan for Lumia Sensorcore API, b) Introduce 3 new Motion Sensing UWP APIs c) Sensing Remotely when sensors are not on the device where you have your application running.</p><p> </p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:6ddb8e3bb4f54fb9a1d0a5e600fda43c"" />",https://s.ch9.ms/Events/Build/2016/P516
|
3
|
+
2,ASP.NET 1.0 Core: Advanced TagHelpers,Taylor Mullen,"In this code-focused session, N. Taylor Mullen digs into the advanced aspects of tag helpers, explaining how you can accomplish more difficult tasks. Along the way, he builds a great tag helper that enables RequireJS like functionality entirely on the server with minimal configuration. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:e9bed4a7d94849e7beeaa5da00c46f9e"" />",https://s.ch9.ms/Events/Build/2016/P410
|
4
|
+
3,Building Big Data Applications using Spark and Hadoop,Maxim Lukiyanov,"In this session, learn how to leverage Spark to build intelligence into your applications. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:d989de235f2243519266a5e200dcb81f"" />",https://s.ch9.ms/Events/Build/2016/P420
|
5
|
+
4,Service Fabric Deploying and Managing Applications with Service Fabric,Chacko Daniel,"<p>Service Fabric deploys and manages distributed applications built as microservices. This session we will show you how to create Service Fabric clusters and walk through an ARM template. We will and then deploy, monitor, troubleshoot, and the upgrade applications with no downtime and show you how it is super easy to manage these microservice based applications.</p><p> </p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:77d916cf8a824f0ca7c0a5e2013ba2e2"" />",https://s.ch9.ms/Events/Build/2016/P431
|
6
|
+
5,Azure IoT: Today and Tomorrow,"Cameron Skinner, Seth Juarez, Sam George","<p>Azure IoT: Today and Tomorrow</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:55a876d55f4045e89213a5db0029a1c9"" />",https://s.ch9.ms/Events/Build/2016/CIOT
|
7
|
+
6,The Future of XAML,"Ryan Demopoulos, Unni Ravindranathan, Seth Juarez, James Clarke","<p>The Future of XAML</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:da0b27cee06240fba27da5db01067cf4"" />",https://s.ch9.ms/Events/Build/2016/The-Future-of-XAML
|
8
|
+
7,Cloud Server Tools,"Scott Hunter, Scott Klein","<p>Ying, Yang and a Bang</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:52b11a83177a4a12bb90a5db0105afa2"" />",https://s.ch9.ms/Events/Build/2016/Ying-Yang-and-a-Bang
|
9
|
+
8,"Jeffrey Snover on Azure Stack, Powershell, and Nano Server","Jeffrey Snover, Seth Juarez","<p>Jeffrey Snover on Azure Stack, Powershell, and Nano Server</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:d94e4d465587434ba5b3a5db0028a7e1"" />",https://s.ch9.ms/Events/Build/2016/CJS1
|
10
|
+
9,Azure AD,Vittorio Bertocci,"<p>Azure AD</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:3e572b90c2034c0cae13a5db0009f2b2"" />",https://s.ch9.ms/Events/Build/2016/Azure-AD
|
11
|
+
10,Python and node.js on Visual Studio,"Seth Juarez, Steve Dower, Sara Itani","<p>Python and node.js on Visual Studio</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:57765cd0bc6a439db54ba5db0008e422"" />",https://s.ch9.ms/Events/Build/2016/Python-and-nodejs-on-Visual-Studio
|
12
|
+
11,TypeScript and Angular 2,"Brad Green, Mi??ko Hevery","<p>TypeScript and Angular 2</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:a424d7245c6546cd975da5db0007f621"" />",https://s.ch9.ms/Events/Build/2016/TypeScript-and-Angular-2
|
13
|
+
12,Converting your desktop app to use the Universal Windows Platform (Project Centennial),"John Sheehan, Stefan Wick, David Tepper","<p>Converting your desktop app to use the Universal Windows Platform (Project Centennial)</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:30874fe4256a4f1fb6d0a5da018a511b"" />",https://s.ch9.ms/Events/Build/2016/Converting-your-desktop-app-to-use-the-Universal-Windows-Platform-Project-Centennial
|
14
|
+
13,Application Insights,"Seth Juarez, Merav Davidson, A.S. Sivakumar","<p>Application Insights </p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:3e6161040a454ca2b63aa5da01579c86"" />",https://s.ch9.ms/Events/Build/2016/App-Insights-and-HockeyApp
|
15
|
+
14,Field: Brazil Recap,Marlon Luz,"<p>Field: Brazil Recap</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:df5916c125324452bb2da5da015419b0"" />",https://s.ch9.ms/Events/Build/2016/Field-Brazil-Recap
|
16
|
+
15,International Space Station Project,"John Shewchuk, Steven Guggenheimer","<p>International Space Station Project</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:0da95ba60bec46b589cfa5da014aaa78"" />",https://s.ch9.ms/Events/Build/2016/GS102
|
17
|
+
16,Build Keynote Review with Guggs and Shewchuck,"John Shewchuk, Seth Juarez, Steven Guggenheimer","<p>Keynote Review</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:0c81a7b092f6460097bba5da013603da"" />",https://s.ch9.ms/Events/Build/2016/GS101
|
18
|
+
17,Docker Tooling for Visual Studio and ASP.NET Core,"Michael Friis, Steve Lasker, Dan Fernandez, Patrick Chanezon","<p>Docker Tooling for Visual Studio and ASP.NET Core</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:e6e050960ff647e68a0ea5da01372846"" />",https://s.ch9.ms/Events/Build/2016/Docker-Tooling-for-Visual-Studio-and-ASPNET-Core
|
19
|
+
18,Building Scalable and Performant Apps using Linux and OSS on Microsoft Azure,Madhan Arumugam,"Given prior history, Microsoft, Linux and OSS are not the terms you see often together in one sentence but the times have changed. In this session we will show how the new Microsoft is changing this perception and why Microsoft Azure is a great place to build and run your Linux and OSS apps and workloads. We will outline our strategy and showcase some of the patterns and practices for building great apps using Linux and OSS on Microsoft Azure. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:efd3e6d51a46400eb726a5da00c4727c"" />",https://s.ch9.ms/Events/Build/2016/P583
|
20
|
+
19,Introduction to Azure Table Storage,Gus Apostol,"Azure Table storage offers highly available, massively scalable storage so that your application can automatically scale to meet user demand. Azure Table Storage is Microsoft?? NoSQL key/attribute store ??it has a schema-less design, making it different from traditional relational databases. With a schema-less data store, it's easy to adapt your data as the needs of your application evolve. Azure Table Storage is easy to use, so developers can create applications quickly. We will present introductory design concepts and demonstration to get the best out of the Azure Table Storage service. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:faccd66fdbff4e908ba9a5da00c47255"" />",https://s.ch9.ms/Events/Build/2016/P582
|
21
|
+
20,Continuous Testing in Team Services,Gopinath Chigakkari,"Want to offload your Testing? In the new DevOps world it is important to ship products faster with great quality, VSTS has tools to setup DevOps pipeline to achieve these goals. As part of the pipeline, you can configure testing in both Continuous Integration and Continuous Delivery workflows. VSTS supports testing any kind of application (.NET, Java, JavaScript, Android, iOS) with any test framework and provides actionable test results. In this session you can learn about how to configure Continuous Testing in CI/CD workflow. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:62afaa4b5b854725b91aa5da00c4724e"" />",https://s.ch9.ms/Events/Build/2016/P581
|
22
|
+
21,Iterating and Experimenting with Azure App Service,Brady Gaster,"<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:b9438cc239f9449ab99ba5da00c47247"" />",https://s.ch9.ms/Events/Build/2016/P580
|
23
|
+
22,Moving to the Cloud,"Narayan Annamalai, Siva Edupuganti","Benefits of moving your applications to cloud. Realize the simplicity & flexibility of managing your infrastructure. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:5f28de11c52f4d2489e2a5da00c4720e"" />",https://s.ch9.ms/Events/Build/2016/P576
|
24
|
+
23,How to Deploy Office Add-ins within Your Organization,Juan Balmori Labra,"Learn about new capabilities to allow Administrators to deploy Office Add-Ins from a central location with Azure Active Directory Groups. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:f280dca893364de5b8f3a5da00c47200"" />",https://s.ch9.ms/Events/Build/2016/P574
|
25
|
+
24,Building Immersive Add-in Experiences??Through Outlook Module Extensibility,Prem Kumar,"Module extensibility allows app developers the ability to create new modules within Outlook. Similarly to Outlook's native mail, calendar and task modules developers can now provide their users with their own module which will host their app?? content. This new functionality is based on the existing Add-ins platform which allows you to extend Office applications using web technologies and distribute Add-ins via the Office store or via private catalogs. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:500a63781d2849b4987aa5da00c471f6"" />",https://s.ch9.ms/Events/Build/2016/P572
|
26
|
+
25,What's New in the People API on the Microsoft Graph,Edward Thiele,"People API helps you build people centric applications with an endpoint that supports contextual search and fuzzy matching and returns the people that matter most. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:ca1954f822704822b844a5da00c471ed"" />",https://s.ch9.ms/Events/Build/2016/P571
|
27
|
+
26,Microsoft Graph Overview,Yina Arenas,"Use the Microsoft Graph to build smarter apps that connect with Office data and insights. Make your app context aware and easily build people and group centric experiences interacting with documents, messages, meetings, conversations, tasks and more. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:2e0a32307127410a8dd1a5da00c471d8"" />",https://s.ch9.ms/Events/Build/2016/P569
|
28
|
+
27,Connecting to Outlook Direct Endpoint with Azure AD Auth v2,Matthias Leibmann,"Come learn how to use v2.0 authorization model + Outlook and Microsoft Graph APIs to target 100s of millions of Outlook.com users and 10s of millions of Office 365 users! <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:7952584256b44e969404a5da00c471d0"" />",https://s.ch9.ms/Events/Build/2016/P568
|
29
|
+
28,Introducing Outlook Tasks in the Outlook Direct Endpoint,Deepak Singh,"Interested in using Outlook tasks in your app? Come learn about our new Outlook Tasks API in preview. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:f003a2ddf4d24939aee1a5da00c471c8"" />",https://s.ch9.ms/Events/Build/2016/P567
|
30
|
+
29,Introducing Webhooks for OneDrive and OneDrive for Business,Ryan Gregg,"Find out how to get near real time notifications to changes in OneDrive and OneDrive for Business with service to service webhooks and OneDrive API. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:32071e5ac4db448584a5a5da00c471be"" />",https://s.ch9.ms/Events/Build/2016/P566
|
31
|
+
30,Introducing the File Picker for OneDrive and OneDrive for Business,Ketaki Sheode,"Drill into the new Unified OneDrive file picker and what?? possible. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:a0b721f1359a4fe88f14a5da00c471b5"" />",https://s.ch9.ms/Events/Build/2016/P565
|
32
|
+
31,Introducing the??Skype for Business SDK for iOS and Android,Richard Taylor,"Find out how to use the new Skype for Business App SDK to directly embed chat, voice, and video conversations within your native iOS and Android apps for businesses and consumers. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:59d1a29c87894525a272a5da00c471ae"" />",https://s.ch9.ms/Events/Build/2016/P564
|
33
|
+
32,What's New with Microsoft Graph SDKs,Matt Geimer,"For the developer in you that wants a library to simplify your coding, come and learn about the SDKs available for Microsoft Graph and how you can even make your own for .NET, iOS, and Android using open source technologies <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:6ddf9942f6ca4648be15a5da00c471a4"" />",https://s.ch9.ms/Events/Build/2016/P563
|
34
|
+
33,Introducing Office Add-ins??for OneNote Online,Vijay Sharma,"Office Add-ins will be soon available on OneNote Online. Learn how you can create an Add-ins for OneNote. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:2a00368aad4b420ba779a5da00c47197"" />",https://s.ch9.ms/Events/Build/2016/P561
|
35
|
+
34,OOF Status and Find Meeting Times API,Shreedevi Padmasini,"Want to use our latest Free/Busy capability to get meeting time suggestions? Want to get./set your OOF status? This session is for you! <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:37f4ce418b9c4c528b4fa5da00c47191"" />",https://s.ch9.ms/Events/Build/2016/P560
|
36
|
+
35,"OneDrive API ??Overview, What?? New, and Scenarios",Sean Maloney,"Overview of the OneDrive API for OneDrive and OneDrive for Business, highlights on what?? new, and a quick overview of the range of scenarios you can enable. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:a0bf383a373d4b41bba5a5da00c47188"" />",https://s.ch9.ms/Events/Build/2016/P559
|
37
|
+
36,Building Office 365 Group Connectors,Simeon Duong,"Want to see the easiest way to create rich content inside Office 365 Groups? Take a look at Connectors! <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:cc56b126af2f4798b55ca5da00c4717d"" />",https://s.ch9.ms/Events/Build/2016/P558
|
38
|
+
37,What?? New in Excel JavaScript APIs v.1.2 in Office Add-ins,Yu Liu,"Excel has a rich JS API with lots of new functionality that enables add-ins to do deep manipulation of Excel data! <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:f77030dedb1d4256a06fa5da00c47176"" />",https://s.ch9.ms/Events/Build/2016/P557
|
39
|
+
38,Working with Excel Documents with the Microsoft Graph,Sudhi Ramamurthy,"Worksheets, Tables, Ranges, Charts and more Excel capabilities via the new Excel REST API available in Microsoft Graph. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:cac93bfe41e8429399e6a5da00c4716e"" />",https://s.ch9.ms/Events/Build/2016/P556
|
40
|
+
39,WebHooks in the Microsoft Graph,Gareth Jones,"Do you want your app to respond dynamically to changes in data stored in Office 365 using the Microsoft Graph without polling? Webhooks are for you! <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:9d2b1d55c76d4a4fa6c8a5da00c47168"" />",https://s.ch9.ms/Events/Build/2016/P555
|
41
|
+
40,Office Add-ins in Office for Mac,Harrison Shapley,"Office Add-ins will soon be available on the Office for Mac. Learn how you can side-load your add-in as well as debug using VorlonJS on the Mac. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:8c60055427bd4ae79641a5da00c4715a"" />",https://s.ch9.ms/Events/Build/2016/P554
|
42
|
+
41,Build Office Add-ins with Any Code Editor and Office Online,Harrison Shapley,"Don't use Visual Studio? Don't worry! It's easy to build Office add-ins using your favorite development tools. In this video, we'll use the Yeoman generator, VS Code, and the browser to create and test an add-in. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:a23c223b84fc4155932ba5da00c47150"" />",https://s.ch9.ms/Events/Build/2016/P552
|
43
|
+
42,Add-in Commands in the Office Ribbon,Humberto Lezama Guadarrama,"Create custom ribbon buttons, tabs and much more to deeply integrate your web add-in with Office. In this overview you will learn all about add-in commands, the cool new feature that enables web developers to extend the Office User Interface. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:0a7f48bc028945eaadbaa5da00c47146"" />",https://s.ch9.ms/Events/Build/2016/P551
|
44
|
+
43,Using Office Open XML in Word Office Add-ins,Stephanie Krieger,"Learn how you can leverage Office Open XML to create amazing add-ins for Word! <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:3771029d28824682801ba5da00c4713a"" />",https://s.ch9.ms/Events/Build/2016/P550
|
45
|
+
44,What's New in Word JavaScript APIs,Michael Saunders,"Check out the new APIs we're enabling for Word add-ins and use them across Office platforms! <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:779b4f80f8d3444c884ba5da00c4712b"" />",https://s.ch9.ms/Events/Build/2016/P549
|
46
|
+
45,"Native iOS, Android, & Windows Apps from C# and XAML with Xamarin.Forms",James Montemagno,"Building cross-platform native UIs with one shared codebase was once just a dream. With Xamarin.Forms, this dream is now a reality. Xamarin.Forms allows you to build a native UI for three platforms with one shared C# codebase. During this session we will cover the Xamarin.Forms library to share up to 99% of your code across iOS, Android, and Windows Phone. Moreover, we will really focus on the code with several live coding adventures throughout the entire session. When you leave you will have the knowledge to create your first iOS, Android, and Windows Phone mobile apps in C# with Xamarin and Xamarin.Forms. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:7488db851eff47d789c8a5da00c470eb"" />",https://s.ch9.ms/Events/Build/2016/P548
|
47
|
+
46,Using Azure PaaS Ecosystem to Design and Implement High-Performance Web Sites,Pranav Rastogi,"<p>Microsoft Azure Redis Cache is a secure, dedicated cache service from Microsoft, based on the Open Source Redis engine. In this session we will take a look at how you can leverage the new features to increase security, data resiliency and performance of Azure Redis Cache.</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:2a038916261c4bad9676a5da00c470e4"" />",https://s.ch9.ms/Events/Build/2016/P534
|
48
|
+
47,Getting Started with Microsoft Identities:??Enterprise Grade Sign In For Your Apps,Stuart Kwan,"By supporting sign in with Microsoft identities, your application can have single sign on with Windows and Microsoft cloud applications, can protect your users with the same technology and investments used to protect Microsoft?? users, and can programmatically access information and insights about users via the Microsoft Graph. In this video, learn from the ground up how to build an application that enables sign in with Microsoft personal, work, and school accounts, and about the industry standard technologies that makes this possible. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:406b26877d4842b9be83a5da00c470dc"" />",https://s.ch9.ms/Events/Build/2016/P530
|
49
|
+
48,Selecting the Right VM Size,Jon Beck,"Azure provides a wide range of virtual machine sizes for any workload that you might want to run. Trying to decide which size is right for your workload can seem challenging. Join this session to find out about some of the considerations for selecting virtual machine sizes and learn the differences between different virtual machine size families and their regional availability. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:652e71306e334f78a3a0a5da00c470cd"" />",https://s.ch9.ms/Events/Build/2016/P523
|
50
|
+
49,Building Multitenant SaaS Applications with Tenant Isolation and Unlimited Scale on Azure SQL Database,Torsten Grabs,"If you are a SaaS application developer writing multitenant applications, you often face tradeoffs between development efficiency, manageability, as well as tenant performance and security. With Azure SQL Database Elastic Database Pools and its Elastic Database capabilities, you no longer have to make that compromise. In this session, we will explore how Elastic Database Pools help you build, manage and monitor multitenant applications with tenant isolation and minimal TCO by placing each tenant in its own database. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:57dbdcba47494485a798a5da00c470c7"" />",https://s.ch9.ms/Events/Build/2016/P522
|
51
|
+
50,Modeling Data for NoSQL Document Databases,"Ryan CrawCour, David Makogon","Application developers must support unprecedented rates of change ??functionality must rapidly evolve to meet customer needs and respond to competitive pressures. To address these realities, developers are increasingly selecting NoSQL document-oriented databases (e.g. Azure DocumentDB, MongoDB, CouchDB) for schema-free, scalable and high performance data storage. One of the oft-cited benefits of NoSQL solutions are that they allow for the storage of schema less data. In reality, however, NoSQL solutions provide for schema flexibility, allowing the system to store data as it comes in, permitting dissimilar structures and encouraging seamless data model iteration. While schema flexibility makes it easy to embrace changes to your data model, data modeling is still important in NoSQL systems. In this session, we??l discuss not only modeling data in Azure DocumentDB, but also migrating and transforming data from traditional, structured data environments. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:4b264dafdca24ba1a0b0a5da00c470c0"" />",https://s.ch9.ms/Events/Build/2016/P468
|
52
|
+
51,"HockeyApp for UWP Apps: Beta Distribution, Crash Reporting and User Metrics",Simina Pasat,"In this video, you will learn how HockeyApp can help you in delivering and maintaining successful UWP apps. First, you will learn how to use HockeyApp to beta distribute your UWP app to testers. Then, you will find out how to get meaningful crash reports for your UWP apps in development, as well as for apps already published to the Store. HockeyApp also provides you with basic user metrics and custom events telemetry to help you understanding the adoption of your app and features. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:e3bf3cda96cc4a9face6a5da00c470ae"" />",https://s.ch9.ms/Events/Build/2016/P463
|
53
|
+
52,Managing Secrets for Azure Apps,Sumedh Barde,"Every serious app you deploy on Azure has critical secrets ??connection strings, certificates, keys. Silly mistakes in managing these lead to fatal consequences ??leaks, outages, compliance violations. As multiple recent surveys point out, silly mistakes cause 4 times more data breaches than adversaries. In this session we will go over some best practices to manage your important app secrets. These may seem like common sense, yet a lot of developers neglect them. We will also go over how to leverage Azure Key Vault to implement those best practices. As an added benefit, following these practices will also help you demonstrate compliance with standards such as SOC. The first ten minutes of the session are level 100 and they apply to any cloud app you develop on any platform. The remainder is level 200-300 and focuses on apps you build on the Azure platform. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:e5d0cfb0bb104e499baaa5da00c470a6"" />",https://s.ch9.ms/Events/Build/2016/P456
|
54
|
+
53,Azure Monitoring & Diagnostics: Gain Deep Insights + Take Intelligent Actions,Ashwin Kamath,"Join us to learn more about Azure Monitoring services and the new features introduced at Build 2016, allowing you to gain deeper insights into the state and health of your Azure resources as well as the capabilities to take automated actions on the data. The talk will include new features for Alerts, Autoscale and Audit Logs <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:aa85de0bbfd6495ba71da5da00c4709d"" />",https://s.ch9.ms/Events/Build/2016/P437
|
55
|
+
54,Developing Custom Visuals for Power BI??Deep Dive,Lukasz Pawlowski,"Power BI Custom visuals enable you to create magical data experiences tailored to your user and your applications. We will work through everything you need to know to build quality custom visuals quickly. This deep dive (yes coding on stage!) will give you the tips and tricks you need to ensure your visuals run great, with high quality. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:e2ac3aba00944f008340a5da00c4706d"" />",https://s.ch9.ms/Events/Build/2016/P434
|
56
|
+
55,Cortana Analytics Suite and Information Management,Matthew Roche,"Cortana Analytics Suite is a fully managed big data and advanced analytics suite that transforms your data into intelligent action. It includes information management, data storage, analytics and visualization capabilities along with APIs such as text analytics, facial recognition and others. This demo-driven session will show you how to manage all your on-premises and cloud data to ingest, prepare, transform, analyze, publish, and monitor information at scale as easily deployable and customizable solutions. Learn about the tools to enhance your applications with machine intelligence to evolve from simple descriptive analytics to prescriptive recommendations. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:11fc52af83b74f43beeba5da00c4703c"" />",https://s.ch9.ms/Events/Build/2016/P429
|
57
|
+
56,What's New with C++ Cross-Platform for Visual Studio 2015 U2,Ankit Asthana,"Visual Studio 2015 provides the best in class C++ development experience whether you are targeting Windows, Android, iOS, Linux or IoT. With a good mix of demos and showcase for new C++ experiences, this talk goes over six great reasons why you should migrate to Visual Studio 2015 today. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:31070012290a4aa0a492a5da00c47032"" />",https://s.ch9.ms/Events/Build/2016/P424
|
58
|
+
57,Building Intelligent Applications Using the Cortana Analytics Process,"Wee Hyong Tok, Gopi Kumar","Learn how the Cortana Analytics Process empowers you with a systematic approach to understand your raw data, and transform it into actions you can embed in intelligent applications. We will walk through the Cortana Analytics Process using a real-life large publicly available New York City (NYC) Taxi dataset that consists of 1.1 billion NYC taxi rides taken from January 2009 to June 2015. You will learn how to use JuPyter notebooks to explore the data to derive insights and use Azure Machine Learning to create predictive models that can power intelligent applications. You will learn how to operationalize your model as a web service, and integrate it with an application. Using these process and the walkthroughs you can gain the skills to design, build and operationalize you own intelligent solutions powered by Cortana Analytics Suite using an iterative and methodical approach. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:ffe9d91ecafb481e8003a5da00c47020"" />",https://s.ch9.ms/Events/Build/2016/P421
|
59
|
+
58,Azure Data Lake Deep Dive,Saveen Reddy,"<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:03b675d80e09447bb6b4a5da00c46fcf"" />",https://s.ch9.ms/Events/Build/2016/P413
|
60
|
+
59,Field: Italy Recap,"Roberto Andreoli, Raffaele Rialdi, Maurizio Pesce, Alberto Magnani","<p>Field: Italy Recap</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:4eca596680554baeaa8da5da000dd4a2"" />",https://s.ch9.ms/Events/Build/2016/Field-Italy-Recap
|
61
|
+
60,Field: Japan Recap Part 2,Akira Inoue,"<p>Field: Japan Recap Part 2</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:cf9997677b1e41d98d4da5da000904fe"" />",https://s.ch9.ms/Events/Build/2016/Field-Japan-Recap-Part-2
|
62
|
+
61,Field: Japan Recap Part 1,Akira Inoue,"<p>Field: Japan Recap Part 1</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:3c5c1515d1b9444f9beaa5da0007defa"" />",https://s.ch9.ms/Events/Build/2016/Field-Japan-Recap-Part-1
|
63
|
+
62,Panel: Engineering Quality,"Charles Torre, Yosef Durr, Jonathan Lipps","<p>Jonathan Lipps, Director of Engineering at Sauce Labs, joins Yosef Durr, Program Manager of the Windows Application Driver project, and Charles to discuss Appium support on Windows.</p><p>Windows Application Driver: <a href=""https://github.com/microsoft/winappdriver"">https://github.com/microsoft/winappdriver</a></p><p>Appium:<a href=""http://appium.io/"">http://appium.io/</a></p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:b4d92fad6e494963901ba5da0005a8b1"" />",https://s.ch9.ms/Events/Build/2016/Panel-Engineering-Quality
|
64
|
+
63,C++ Discussion,"Marian Luparu, Charles Torre, Ankit Asthana","<p>Marian Luparu and Ankit Asthana discuss reasons to move existing C++ code to Visual Studio 2015 and dig into the new C++ extension for Visual Studio Code.</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:84d5ee52cc3c48b782b6a5da0004e1b1"" />",https://s.ch9.ms/Events/Build/2016/C-Discussion
|
65
|
+
64,NPR Xbox UWP,Ben Schein,"<p>NPR Xbox UWP</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:39f8c3e15b7a4fafbb5ba5d9014f3faa"" />",https://s.ch9.ms/Events/Build/2016/NPR-Xbox-UWP
|
66
|
+
65,Field: Belgium Recap,"Nick Trogh, Peter Maynard","<p>Field: Belgium Recap</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:dee4512bfa5847f19f69a5d90150428c"" />",https://s.ch9.ms/Events/Build/2016/Field-Belgium-Recap
|
67
|
+
66,Microsoft Translator: Speech Translation Made Easy,Chris Wendt,"<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:b1a94ed26c16414eacc3a5d900c2a64c"" />",https://s.ch9.ms/Events/Build/2016/P577
|
68
|
+
67,Windows SDK for Facebook,Anand Lakshminarayan,"The Windows SDK for Facebook is an open source implementation of Facebook?? Graph API that allows developers to integrate Facebook login/social features into their UWP apps. Through this presentation and demo video, understand how to set up an app with Facebook Login, utilize the Dialogs to Share to the user?? timeline, and make Graph API requests with the SDK. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:8dc56b828e224d428a1ba5d900c2a642"" />",https://s.ch9.ms/Events/Build/2016/P544
|
69
|
+
68,Windows 10 Apps: Designing for Global Customers,"Cameron Lerum, Stephanie Smith","Take your Windows 10 UWP app to the four corners of the globe using Visual Studio 2015 + Multilingual App Toolkit. Integrated localization workflow makes reaching the next 1 billion customer just a few clicks away - allow you to focus on delivering great features. This session will cover the steps and tooling necessary to localization to your Windows 10 apps to reach your target audience. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:cf02010a19dd49918c4da5d900c2a635"" />",https://s.ch9.ms/Events/Build/2016/P543
|
70
|
+
69,Windows Calls Applications,"Bayo Olatunji, Sage Schreiner","Introduction to creating a dialing application using Windows 10 public calling APIs, and a walkthrough of the Github sample app. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:0e0a92cb61e240d08ffaa5d900c2a62c"" />",https://s.ch9.ms/Events/Build/2016/P542
|
71
|
+
70,Accessibility on Windows 10,Mariah Dunn,"Learn the main design principles for building accessible apps including, common control usage, keyboard accessibility, programmatic accessibility and respecting the user settings, as well as some accessibility solutions on Windows 10 including Narrator, High Contrast, Magnifier, Windows Speech Recognition and Closed Captions. This is an introduction to accessibility concepts for developers on Windows. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:10cb9fd715fd43d6a409a5d900c2a617"" />",https://s.ch9.ms/Events/Build/2016/P541
|
72
|
+
71,What?? New with Bing APIs v5,Ryan Becker,"Get the power of Bing.com, available to you as an API! Learn about the new features provided with the offering and how to take advanantage of the capabilities to light up your own scenarios. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:1bed80b4b5294d38a7f1a5d900c2a60b"" />",https://s.ch9.ms/Events/Build/2016/P540
|
73
|
+
72,U-SQL in Azure Data Lake ??HyperScale Data Processing for the .NET Developer,Michael Rys,"SQL and .NET has been a favorite language for developers and DBAs for decades. However over the last couple of years, data processing is increasingly moving towards Big Data processing and is posing some new demands on not just scalability but also the ability to query late-structured data with custom algorithms. The new Azure Data Lake Analytics is introducing a new SQL-based language called U-SQL that combines the familiarity of SQL with new extensions for Big Data processing and easier user-extensibility. This session shows how to build big data solutions with U-SQL. You will learn how to integrate C# and .NET code to extend the power of U-SQL with C# Expressions. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:967fae959c1146a2956ea5d900c2a5f5"" />",https://s.ch9.ms/Events/Build/2016/P536
|
74
|
+
73,Spatial Data Management and Visualization with Bing Maps,Johannes Kebeck,"With ever increasing amounts of connected "things" and volumes of data, visual representations are often key to decode the meaning behind the data and make better informed decision. The geospatial and temporal contexts provide us with additional dimensions to pivot and understand the data. In this session we have a quick look at Microsoft products and services that make spatial not special before we dive into new features in Bing Maps and Spatial Data Services that allow us to manage and visualize geospatial data in the Microsoft Cloud and make them accessible across devices. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:ab437d01310243568941a5d900c2a5da"" />",https://s.ch9.ms/Events/Build/2016/P529
|
75
|
+
74,Spatial Audio with AudioGraph in UWP,Steven Wilssens,"In the next release of Windows, we will bring spatial audio to UWP developers. Xbox, Windows Desktop, HoloLens, and Windows Mobile app developers will be able to add Spatial Audio to their UWP applications either directly from their app or through a Unity plugin. During this session you will learn how the AudioGraph API works, how you can add Spatial Audio to your app, game, or experience. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:973d13e0ee644dacb228a5d900c2a5ba"" />",https://s.ch9.ms/Events/Build/2016/P527
|
76
|
+
75,"TracePoints, a Better Way to console.log",Andy Sterland,"In this talk we??l look at using the F12 Edge Dev Tools to instrument code just like you would with console.log but without having to redeploy your site. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:6d35906ffcfd4ea79348a5d900c2a5a6"" />",https://s.ch9.ms/Events/Build/2016/P518
|
77
|
+
76,Debugging Events in Edge,Andy Sterland,"In this talk we??l look at how you can be more productive debugging events with the F12 Edge Dev Tools. Specifically, we??l be looking at setting breakpoints on events, tracing them and figuring out which events are hooked up to an element. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:fc0dbd8ad2224bd3844da5d900c2a59e"" />",https://s.ch9.ms/Events/Build/2016/P517
|
78
|
+
77,Tips for Working with CSS in the Edge Dev Tools,Andy Sterland,"In this talk we??l look at some features in the F12 Edge Dev Tools that will make working with CSS that little bit easier. Specifically we??l be looking at the track changes and CSS editing features in the dev tools. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:f1bac7fc3f5543afbf18a5d900c2a596"" />",https://s.ch9.ms/Events/Build/2016/P515
|
79
|
+
78,Windows Hello in Microsoft Edge,Anoosh Saboori,"Windows Hello already offers Windows 10 users a secure password alternative for accessing business networks, apps, and SaS applications and now we??e adding new support that will enable users to use Windows Hello for passwordless sign-in to their favorite websites using Microsoft Edge. Come join us to learn how to update your website to support strong authentication and passwordless authentication using Windows Hello. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:8d9e38c1df5e41b48b8ca5d900c2a58a"" />",https://s.ch9.ms/Events/Build/2016/P514
|
80
|
+
79,"Improving JavaScript Frameworks, Edge, & UWP Web Apps",John-David Dalton,"Get an inside look at how the Edge team prevents regressions in, and expands support of, JavaScript frameworks in the browser and UWP web apps. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:5a163efa2a5740e1b2eda5d900c2a581"" />",https://s.ch9.ms/Events/Build/2016/P513
|
81
|
+
80,User Segmentation and Targeted Push Notifications for UWP Apps,Yamil Hernandez,"Engaging with your user base at the right time and with the appropriate message is key to your success as an app developer. Windows Dev Center provides a data-driven customer engagement platform that UWP app developers can leverage to create segments of customers, share relevant information using push notifications and measure the effectiveness of your communications. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:0c2d7016aba749948d7ba5d900c2a575"" />",https://s.ch9.ms/Events/Build/2016/P512
|
82
|
+
81,Promote Your App: New Tools to Grow Audience for Your App,Kiran Bangalore,"Acquiring customers for your app can be a challenge. Microsoft provides a "Promote your app" service that will allow you to attract customers using free or paid campaigns. The video shows how simple it is to create a campaign and optimize for acquisitions, and demonstrates two new ways of acquiring customers: community ad campaigns and re-engagement ad campaigns. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:36c4ee22aaee4390a7f1a5d900c2a56c"" />",https://s.ch9.ms/Events/Build/2016/P511
|
83
|
+
82,A/B Testing for UWP Apps: Experiment for Success,Jason Watson (WEB),"Have you ever wondered if modifying in-app offer descriptions or ad placements in your app would boost conversions? Or whether modifying the difficulty in a particular game level might boost user engagement and retention? You can test these hypotheses, and many more, with A/B Testing for Apps. Learn how to run experiments in your Windows Store apps from Dev Center, using our new SDK. Also see how you can switch your audience to a winning app variation from Dev Center in two clicks, without republishing your app. Making a great app is your first step in achieving success: experimentation helps you make data-driven decisions for evolving your app to continually engage your audience and achieve long-term success. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:e1b722526d3e4085b49fa5d900c2a564"" />",https://s.ch9.ms/Events/Build/2016/P510
|
84
|
+
83,Advanced Multi-User Capabilities in Dev Center,Victor Soto,"This presentation covers the capabilities that allow multiple users to access a Dev Center account to manage apps and collaborate. Learn how to create and link an Azure AD from Dev Center, and how to manage access control - From a basic model all the way to the new advanced mode with app-level granularity. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:89fb27c8787246ab9fcea5d900c2a558"" />",https://s.ch9.ms/Events/Build/2016/P509
|
85
|
+
84,Customizing Your Device Experience with Assigned Access,Lily Hou,"For corporate owned devices, there is often a need to restrict the experience to one or more Line of Business applications, creating a curated lockdown experience such as a kiosk or a specialized task oriented device. This session will discuss how you can leverage assigned access to create a single application kiosk experience on desktop as well as a role-based experience for task worker scenarios on Windows Mobile. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:163b117649a74a11acc7a5d900c2a54c"" />",https://s.ch9.ms/Events/Build/2016/P508
|
86
|
+
85,Protecting Premium Video in Windows with PlayReady,Timothy Rule,"PlayReady is a popular technology for securing video and music services. With Windows 10 a new version of PlayReady adds features requested by premium video services to support hardware security. Also, with Windows 10 the PlayReady APIs are now part of the Windows Runtime for Universal Apps. Browsers such as Edge utilize PlayReady for secure video playback and web developers can access it via standards based Encrypted Media Extensions. Learn about basics of the technology, the new features, different use cases, and how to start building premium video applications with PlayReady digital rights management. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:0870a0e47c9e4658b091a5d900c2a541"" />",https://s.ch9.ms/Events/Build/2016/P507
|
87
|
+
86,App Discovery in the Windows Store,Morgan McLean,"Attract more customers in the Store by making your apps more visible and enticing. Learn about how you can improve the appearance of your products in the Store and how this impacts discovery through search, suggestions, and recommendations. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:6c16b6a88d27487e9908a5d900c2a51f"" />",https://s.ch9.ms/Events/Build/2016/P506
|
88
|
+
87,Windows Store Analytics APIs: New Ways to Get Your Hands on Your Data,Stuart Hargreaves,"Windows Dev Center offers a wide range of options for accessing your app's analytics data. With the new Windows Store analytics API, you now have programmatic access to this data, including advanced querying, without having to log into Dev Center. These APIs also enable you to visualize and report on your data using new Dev Center Power BI Connector. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:2d0bad0acac046aea868a5d900c2a516"" />",https://s.ch9.ms/Events/Build/2016/P505
|
89
|
+
88,Bringing Desktop Apps to the UWP Using Desktop App Converter,"David Tepper, Avneet Singh","Enabling existing desktop applications (Win32, .NET, etc.) to become part of the Universal Windows Platform (UWP) ecosystem is a key part of the Windows 10 vision. This session will cover the technologies that will enable you to convert your existing desktop application to a UWP app. We??l demonstrate how to use the Desktop App Converter and Desktop Conversion extensions to take advantage of UWP features to enhance your app. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:0fe14e4a84ae4503bac1a5d900c2a50c"" />",https://s.ch9.ms/Events/Build/2016/P504
|
90
|
+
89,App Feedback: Connect with Your Customers,"Chris Tulip, Stuart Hargreaves","App Feedback gives you a new channel for hearing from your customers. Learn how to add an option for your customers so they can submit, upvote, and comment on feedback about your app. Everything your customers submit is available in Dev Center, where you can analyze this information through sorting and filtering. We'll also show how to engage with those customers through email, discussions in the Feedback Hub, and mark feedback as fixed or implemented. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:ed28d11fbce14c3aa7efa5d900c2a4fc"" />",https://s.ch9.ms/Events/Build/2016/P503
|
91
|
+
90,App Flighting and Beta Testing in the Windows Store,"Jonathan Garrigues, Beth Anne Katz","Learn how Windows Store allows you to do testing in production using package flighting -- delivering different binaries for the same app to different groups of people. Also learn about new features currently in development for limiting which users can see and acquire an app, how quickly package updates are rolled out, and letting customers opt-in to receive beta versions of an app. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:3b69853cea294334b898a5d900c2a4f2"" />",https://s.ch9.ms/Events/Build/2016/P502
|
92
|
+
91,Monetize Your App Using Windows Store Monetization Platform,"Matt Sullivan, Kiran Bangalore","Learn what's new with monetization in Dev Center and the SDK. We'll show a hands on coding walkthrough adding banner and interstitial ads into a C++ app, but note that the same concepts apply to those writing in C#, JavaScript, and even Visual Basic. The video also covers affiliate ads and other future revenue options under development. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:2d7f6e0323b94cf893a8a5d900c2a4d0"" />",https://s.ch9.ms/Events/Build/2016/P501
|
93
|
+
92,UI Test Automation for Browsers and Apps Using the WebDriver Standard,"Yosef Durr, Gopinath Chigakkari","Looking for an update on UI Test Automation? This session covers both Browser and App testing. Great news for Windows application testing! We are launching a new UI test service based on the WebDriver standard. We'll explain why we??e adopting the WebDriver standard for application testing and show a demo using this service. We also cover how to run web application tests targeting multiple browsers using Selenium. And we??l we give you a glimpse on how to execute tests continuously in CI/RM. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:47650f1060494763917ba5d900c2a49d"" />",https://s.ch9.ms/Events/Build/2016/P499
|
94
|
+
93,Migrating Silverlight Windows Phone Apps to the Universal Windows Platform,"Lifeng Ge, Ricardo Villalobos","In this session, you will learn how to use the Mobilize.NET migration tool to convert Windows Phone Silverlight applications to the Universal Windows Platform. In addition to the automated process, we will share best practices and techniques to address some of the unique patterns that we have identified after working with partners in different industries. Also, we will give you an introduction to the community repository of migration mappings, and how you can contribute to this effort. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:0f33b94513a74c3fa889a5d900c2a466"" />",https://s.ch9.ms/Events/Build/2016/P498
|
95
|
+
94,Introduction to Building Accessible UWP Apps,Sean Hayes,"In this introduction we will cover the basic considerations for making your applications accessible to the widest set of users, showing how you can work with the Windows UI Automation framework and respect user settings in a XAML application. Will cover working with automation properties and events, using XAML in a way that the automation framework can understand, and working with the AccessibilitySettings class using a custom visual state trigger. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:6ce0a65fad1a47aa8c90a5d900c2a45b"" />",https://s.ch9.ms/Events/Build/2016/P497
|
96
|
+
95,What?? New in Accessibility (for Developers and Users),Jeff Petty,"In this brief video, Jeff Petty from the Windows Accessibility Team, provides an overview of some of the new accessibility features coming to Windows in 2016. He shares information about how Microsoft is responding to user requests for a ??ne stop shop??for accessibility on MSDN (the new Accessibility Developer Hub) and to combine guidance and sample code in articles (the new Design & UI content at the Windows Dev Center). The overview also includes XAML improvements, e.g. support for mnemonics or access keys in a few steps, and Edge platform improvements, e.g. code web pages and apps using web standards like ARIA for an accessible experience. He also shares some new tools that make it easier to find, triage and fix common accessibility errors within Visual Studio and after apps have been deployed using Narrator Developer Mode. Finally, he shares some investments Microsoft is making to improve the Narrator user experience. Microsoft believes there is a great business case for creating accessible applications for all users, and is investing to make it easier for developers to create accessible experiences. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:c205ed7e008d46a0911da5d900c2a455"" />",https://s.ch9.ms/Events/Build/2016/P496
|
97
|
+
96,UWP Application Data: Building a Continuous App Experience,"Sandeep Mathew George, Hector Barbera","Most apps need to store data. This session will teach you the design principles to model and store your UWP app data so that it is preserved via Backup/Restore, synced across devices via app data roaming, shared between your suite of applications and also shared across users of your application on a device. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:97fe3c4e20fe4f539cc5a5d900c2a439"" />",https://s.ch9.ms/Events/Build/2016/P495
|
98
|
+
97,Windows 10 Identity Overview,Karanbir Singh,"Windows 10 is an exciting release from an Identity point of view with many new additions like Azure Active Directory Join, Web Account Manager, Microsoft Passport, and Windows Hello. This session is a high-level overview of the new Identity features and how they fit with each other. The viewers are expected to walk away with a clear mental model for user Identity on Windows 10. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:79e73c05a2d44c0c8ef3a5d900c2a432"" />",https://s.ch9.ms/Events/Build/2016/P494
|
99
|
+
98,Managing Windows in an Enterprise: Empower Your Users & Protect Your Data,Janani Vasudevan,"Enabling people to access their corporate apps and data on their devices, whether in the office or on the road, doesn?? need to be a challenge. Windows 10 helps protect corporate resources though mobile device management, data protection, and identity both from on-premises and in the cloud. This session will explain how Windows 10 can help organizations give people the best apps to do their jobs while reducing costs and keeping data safe. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:d5ca08023a75489197a3a5d900c2a428"" />",https://s.ch9.ms/Events/Build/2016/P493
|
100
|
+
99,The Power of the EffectBrush in Windows UI,"Dave Driver, Kelly Renner, Chris Raubacher","In the this short talk Chris and Kelly will explore key concepts, code and demos for getting started with the Windows.UI.Composition effects system. You??l learn how to describe, animate and chain effects for Universal Windows Platform Applications. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:9c8cd0c4d82f4f9191e2a5d900c2a422"" />",https://s.ch9.ms/Events/Build/2016/P492
|
101
|
+
100,Windows Unlock with IoT Devices,Anoosh Saboori,"With Windows 10 strong authentication and biometrics we??e poised for mainstreaming on Windows devices with Microsoft Passport and Windows Hello. These solutions are about to become more flexible than ever with the companion device framework that will enable IHV?? to build a broad range of devices (e.g.: wearables, NFC cards, etc) that can be used to remotely unlock or even authenticate on your Windows 10 devices. You can find more information on MSDN: https://msdn.microsoft.com/en-us/windows/uwp/security/companion-device-unlock <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:89592d5ae56d44d08804a5d900c2a41a"" />",https://s.ch9.ms/Events/Build/2016/P491
|
102
|
+
101,Beyond the EffectBrush with Windows UI,"Dave Driver, Kelly Renner, Chris Raubacher","This talk assumes you have an understanding of using the Windows UI EffectBrush (presented in Talk One) and want to learn some new techniques like shadows, scene based and backdrop effects to take your application to the next level of beautiful. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:2c840ecfa8f34e719611a5d900c2a40d"" />",https://s.ch9.ms/Events/Build/2016/P490
|
103
|
+
102,Async Programming Improvements for C++ and UWP,"Peter Torr, Eric Mittelette, Gor Nishanov","In this video, you??l see how C++ Coroutines can dramatically simplify the Async coding pattern for UWP, whilst boosting readability and maintainability. As with many other languages, C++ now has an ??wait??like feature that lets functions suspend and resume without blocking their threads. The new C++ co_await keyword can be used with both standard C++ and C++/CX, and is supported for both Universal Windows Apps and Classic Windows Apps. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:fb54b980ac4f48b6b9cfa5d900c2a3ff"" />",https://s.ch9.ms/Events/Build/2016/P489
|
104
|
+
103,Using Expression Animations to Create Engaging & Custom UI,"Anthony Young, Lindsay Kubasik","Learn to use the new animation engine to create custom and responsive motion experiences in your Universal Windows Application. This talk is a deep dive on how to use expression animations in the visual layer to build engaging and exciting UI with incredible flexibility. This talk covers concepts from creating a basic expression animation, up through using properties of visuals to drive expression animations. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:c9476bf936f84aed9f73a5d900c2a3c9"" />",https://s.ch9.ms/Events/Build/2016/P486
|
105
|
+
104,Connected Animations,Varun Shandilya,"Connected animations provides a way for developers to run animations while the user is moving between scenes or pages. This helps user to main focus on the right thing and orient them as they land in a new scene and page. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:338dae62ceec46488689a5d900c2a3be"" />",https://s.ch9.ms/Events/Build/2016/P485
|
106
|
+
105,Implicit Animations,Varun Shandilya,"Implicit Animations helps developers to declare their animations/behavior ahead of time and as changes happen to properties in application related animations are played by the system implicitly reducing development overhead for maintenance. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:6733f60835a94780bf4fa5d900c2a3b3"" />",https://s.ch9.ms/Events/Build/2016/P484
|
107
|
+
106,Using Non-volatile Memory (NVDIMM-N) as Byte-Addressable Storage in Windows Server 2016,Tobias Klima,"This session covers the use of non-volatile memory (NVDIMM-N) in a byte-addressable mode with a DirectAccess (DAX), a.k.a. zero-copy file system in Windows Server 2016. In this mode, DAX-aware applications can expect ultra-low latency access (orders of magnitude compared to SSD) to the persistent storage medium and gain significant efficiencies. The open-source NVML library makes this transition easier for apps. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:5c19e63ca7ca4a2e8d65a5d900c2a3aa"" />",https://s.ch9.ms/Events/Build/2016/P470
|
108
|
+
107,Using Non-volatile Memory (NVDIMM-N) as Block Storage in Windows Server 2016,Tobias Klima,"This session covers why non-volatile memory - in the form of NVDIMM-N - is an important storage medium of interest to application developers and DevOps experts. It will provide insight into non-volatile memory can be easily exploited in Windows Server 2016, without application changes, for extremely high performance read/write workloads, such as SQL. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:9c61408af81d412ea247a5d900c2a3a3"" />",https://s.ch9.ms/Events/Build/2016/P466
|
109
|
+
108,Runtime Editing Tools for XAML,??ante Gagne,"This video gives a brief overview of the newest runtime editing tools available in with Visual Studio 2015 Update 2 and the newest Visual Studio preview. The In-App runtime tools streamline the UI Debugging workflows. The Live Property Explorer can inspect properties exposed by automation peers which makes accessibility related issues easier to fix and XAML Edit & Continue lets you edit live XAML while the app is running and get immediate feedback. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:4a835fec28414b2b9d48a5d900c2a398"" />",https://s.ch9.ms/Events/Build/2016/P465
|
110
|
+
109,Enterprise Data Protection: Building Windows Apps that Keep Work and Personal Data Separate and Secure,"Derek Adam, Rohith Gowda","IT?? biggest challenge is how to manage access to work data for a mobile workforce, where phones and laptops with sensitive data are lost or recycled, employees switch companies, and data lands on personal devices. Windows 10 provides a way for trusted apps to safely handle work and personal, so enterprises can manage their data without destroying personal data or boxing in the user experience. This session will cover how to call the APIs for creating a trustworthy app that complies with enterprise data policy, while providing a safe and uncompromised personal experience.??<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:1f665782c2354b2da353a5d900c2a389"" />",https://s.ch9.ms/Events/Build/2016/P464
|
111
|
+
110,Integrating your Systems with Logic Apps,"Jeff Hollan, Jon Fancey","Watch this session to see what you can do with Logic Apps, our cloud-scale workflow engine that enables you to connect SaaS applications to data sources to social media to your own API Apps and more! Logic Apps enables you to integrate systems and applications quickly and easily using a powerful browser-based designer. You??l also see how you can consume custom APIs in Logic Apps to connect FTP to SQL across Logic Apps using Service Bus. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:f0fbce530ce442aeb631a5d900c2a382"" />",https://s.ch9.ms/Events/Build/2016/P462
|
112
|
+
111,Windows Device Portal ??Diagnose Windows Devices from the Comfort of Your Browser,Hirsch Singhal,"Device control and diagnostics from the convenience of your browser. Windows Device Portal will be included on all Windows 10 devices, coming in the April Tech Preview. From Device Portal, UWP developers can sideload their apps, get performance and ETW traces, and interact with their device, using the same set of tools and REST APIs regardless of platform. This video will go over tools on Phone and HoloLens, show off new UI coming from Xbox, and show you how to use Device Portal from the command line. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:fddb1131026b46ba8c26a5d900c2a367"" />",https://s.ch9.ms/Events/Build/2016/P461
|
113
|
+
112,Intro to Bluetooth Background Communication,Kiran Pathakota,"Take a look at the Bluetooth classic communication paradigm that Windows 10 has to offer. With the latest APIs released just in time for //Build 2016, you'll see that devices don't always have to be paired in order to communicate with Windows. Learn all about sockets, Bluetooth RFCOMM, background triggers and how your app can effectively use Bluetooth even while unpaired. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:81290c8e16b9413ba28ea5d900c2a2e5"" />",https://s.ch9.ms/Events/Build/2016/P460
|
114
|
+
113,Universal 3D Printing with Windows,Michael Scherotter,"3D printing is now universal across Windows devices including Desktop, Tablet, phone, and HoloLens. In this talk you will learn about the various app and game scenarios that are enabled by 3D printing. You will also see the various ways that developers can integrate 3D printing into universal windows and desktop applications in a consistent way across devices. You will learn about the 3MF format and consortium and the various ways for hardware and software companies can become part of the growing 3D printing, design, and manufacturing ecosystem. Finally, you will learn about how Microsoft is making investments in the future of 3D printing on Windows. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:2f1210ade4d44385a119a5d900c2a2d9"" />",https://s.ch9.ms/Events/Build/2016/P459
|
115
|
+
114,Applications That Learn & Adapt: Azure Machine Learning + Search,Liam Cavanagh,"Most likely you have seen product recommendations in some of your favorite ecommerce sites. These are often presented as "Frequently Bought Together" recommendations which show products that other users have purchased along with the currently viewed product. Recommendations are one of the many ways that Machine Learning can be used to enhance a user?? search experience and can be applied to a large number of scenarios beyond ecommerce. In this demo heavy session, we will discuss topics such as feedback loops, personalization, relevancy tuning and learn how to use technologies such as Azure Search and Azure Machine Learning to build out and enhance the full text search experience of your web and mobile applications. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:79ea541c2949447f86c0a5d900c2a2d1"" />",https://s.ch9.ms/Events/Build/2016/P458
|
116
|
+
115,Hosted Web Apps Myth #10: My Web App Can?? Interact with Native Code,"Jeff Burtoft, Kiril Seksenov","Hosted Web Apps on Windows 10 can do more than ever before but that isn?? always clear. People often times have thoughts and questions similar to these: ??an I call native APIs form JS on the web??? ??t can?? be that simple?? ??ebsites don?? look like apps?? ??ow can my web code work offline??? ??eb apps have slow UI??and more. This session will take the top 10 myths surrounding Hosted Web Apps and debunk them through code samples, demos and videos. It will cover how Hosted Web Apps can exemplify a range of native app features from offline capabilities to fast, fluid and responsive UI. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:3898b32f39a240faa308a5d900c2a2c2"" />",https://s.ch9.ms/Events/Build/2016/P453
|
117
|
+
116,Hosted Web Apps Myth #9: Hosted Web Apps Can't Manage Media as Well as Native,"Jeff Burtoft, Kiril Seksenov","Hosted Web Apps on Windows 10 can do more than ever before but that isn?? always clear. People often times have thoughts and questions similar to these: ??an I call native APIs form JS on the web??? ??t can?? be that simple?? ??ebsites don?? look like apps?? ??ow can my web code work offline??? ??eb apps have slow UI??and more. This session will take the top 10 myths surrounding Hosted Web Apps and debunk them through code samples, demos and videos. It will cover how Hosted Web Apps can exemplify a range of native app features from offline capabilities to fast, fluid and responsive UI. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:4c04d2510d8948768de1a5d900c2a2b7"" />",https://s.ch9.ms/Events/Build/2016/P452
|
118
|
+
117,Hosted Web Apps Myth #8: Hosted Web Apps Don?? Get the Latest Cool Features,"Jeff Burtoft, Kiril Seksenov","Hosted Web Apps on Windows 10 can do more than ever before but that isn?? always clear. People often times have thoughts and questions similar to these: ??an I call native APIs form JS on the web??? ??t can?? be that simple?? ??ebsites don?? look like apps?? ??ow can my web code work offline??? ??eb apps have slow UI??and more. This session will take the top 10 myths surrounding Hosted Web Apps and debunk them through code samples, demos and videos. It will cover how Hosted Web Apps can exemplify a range of native app features from offline capabilities to fast, fluid and responsive UI. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:8876598008004c8ea9b3a5d900c2a2ac"" />",https://s.ch9.ms/Events/Build/2016/P451
|
119
|
+
118,Hosted Web Apps Myth #7: Hosted Web Apps Can?? Access Hardware,"Jeff Burtoft, Kiril Seksenov","Hosted Web Apps on Windows 10 can do more than ever before but that isn?? always clear. People often times have thoughts and questions similar to these: ??an I call native APIs form JS on the web??? ??t can?? be that simple?? ??ebsites don?? look like apps?? ??ow can my web code work offline??? ??eb apps have slow UI??and more. This session will take the top 10 myths surrounding Hosted Web Apps and debunk them through code samples, demos and videos. It will cover how Hosted Web Apps can exemplify a range of native app features from offline capabilities to fast, fluid and responsive UI. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:aa198b61d67d46b2ae34a5d900c2a29b"" />",https://s.ch9.ms/Events/Build/2016/P450
|
120
|
+
119,Hosted Web Apps Myth #6: Hosted Web Apps Can?? Run in the Background,"Jeff Burtoft, Kiril Seksenov","Hosted Web Apps on Windows 10 can do more than ever before but that isn?? always clear. People often times have thoughts and questions similar to these: ??an I call native APIs form JS on the web??? ??t can?? be that simple?? ??ebsites don?? look like apps?? ??ow can my web code work offline??? ??eb apps have slow UI??and more. This session will take the top 10 myths surrounding Hosted Web Apps and debunk them through code samples, demos and videos. It will cover how Hosted Web Apps can exemplify a range of native app features from offline capabilities to fast, fluid and responsive UI. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:56efc107b5ad4337807ea5d900c2a292"" />",https://s.ch9.ms/Events/Build/2016/P449
|
121
|
+
120,Hosted Web Apps Myth #5: Hosted Web Apps Don?? Work Offline,"Jeff Burtoft, Kiril Seksenov","Hosted Web Apps on Windows 10 can do more than ever before but that isn?? always clear. People often times have thoughts and questions similar to these: ??an I call native APIs form JS on the web??? ??t can?? be that simple?? ??ebsites don?? look like apps?? ??ow can my web code work offline??? ??eb apps have slow UI??and more. This session will take the top 10 myths surrounding Hosted Web Apps and debunk them through code samples, demos and videos. It will cover how Hosted Web Apps can exemplify a range of native app features from offline capabilities to fast, fluid and responsive UI. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:ef5048dc8b214f1e8cf4a5d900c2a289"" />",https://s.ch9.ms/Events/Build/2016/P448
|
122
|
+
121,Hosted Web Apps Myth #4: Hosted Web Apps Take Too Long to Load,"Jeff Burtoft, Kiril Seksenov","Hosted Web Apps on Windows 10 can do more than ever before but that isn?? always clear. People often times have thoughts and questions similar to these: ??an I call native APIs form JS on the web??? ??t can?? be that simple?? ??ebsites don?? look like apps?? ??ow can my web code work offline??? ??eb apps have slow UI??and more. This session will take the top 10 myths surrounding Hosted Web Apps and debunk them through code samples, demos and videos. It will cover how Hosted Web Apps can exemplify a range of native app features from offline capabilities to fast, fluid and responsive UI. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:609aa3d67dd1452f9576a5d900c2a281"" />",https://s.ch9.ms/Events/Build/2016/P447
|
123
|
+
122,Hosted Web Apps Myth #3: Hosted Web Apps Aren?? Good for Games,"Jeff Burtoft, Kiril Seksenov","Hosted Web Apps on Windows 10 can do more than ever before but that isn?? always clear. People often times have thoughts and questions similar to these: ??an I call native APIs form JS on the web??? ??t can?? be that simple?? ??ebsites don?? look like apps?? ??ow can my web code work offline??? ??eb apps have slow UI??and more. This session will take the top 10 myths surrounding Hosted Web Apps and debunk them through code samples, demos and videos. It will cover how Hosted Web Apps can exemplify a range of native app features from offline capabilities to fast, fluid and responsive UI. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:698fdaf6bc1a4092b0f3a5d900c2a275"" />",https://s.ch9.ms/Events/Build/2016/P446
|
124
|
+
123,Hosted Web Apps Myth #2: You Can Tell It?? a Web Site,"Jeff Burtoft, Kiril Seksenov","Hosted Web Apps on Windows 10 can do more than ever before but that isn?? always clear. People often times have thoughts and questions similar to these: ??an I call native APIs form JS on the web??? ??t can?? be that simple?? ??ebsites don?? look like apps?? ??ow can my web code work offline??? ??eb apps have slow UI??and more. This session will take the top 10 myths surrounding Hosted Web Apps and debunk them through code samples, demos and videos. It will cover how Hosted Web Apps can exemplify a range of native app features from offline capabilities to fast, fluid and responsive UI. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:db13fbb910874253b162a5d900c2a26b"" />",https://s.ch9.ms/Events/Build/2016/P445
|
125
|
+
124,Hosted Web Apps Myth #1: I Have to Rewrite My Web Site to Ship It as an App,"Jeff Burtoft, Kiril Seksenov","Hosted Web Apps on Windows 10 can do more than ever before but that isn?? always clear. People often times have thoughts and questions similar to these: ??an I call native APIs form JS on the web??? ??t can?? be that simple?? ??ebsites don?? look like apps?? ??ow can my web code work offline??? ??eb apps have slow UI??and more. This session will take the top 10 myths surrounding Hosted Web Apps and debunk them through code samples, demos and videos. It will cover how Hosted Web Apps can exemplify a range of native app features from offline capabilities to fast, fluid and responsive UI. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:ece7a6a9de1e4be082a3a5d900c2a25e"" />",https://s.ch9.ms/Events/Build/2016/P444
|
126
|
+
125,Enhance App Discovery & Re-Engagement Through App & Actions Deep Linking,Vincent Wehren,"Learn how to reach the millions of users of Bing, Cortana, Outlook, and more by enabling app deep linking using standards-based markup & protocols. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:7a0c169dedf343df96cfa5d900c2a23c"" />",https://s.ch9.ms/Events/Build/2016/P440
|
127
|
+
126,Saving Development Time with Windows App Studio's Windows 10 UWP NuGet Packages,Peter Kruger,"Recorded session will cover the Windows App Studio NuGet packages for Windows 10 controls (~2 min) and will show how easy it is to implement into any Windows 10 solution in visual studio (~3 min). <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:c3f41b6590ae408989e9a5d900c29fb1"" />",https://s.ch9.ms/Events/Build/2016/P439
|
128
|
+
127,Easily and Quickly Create Apps for Small Business Clients Using Windows App Studio,Peter Kruger,"Recorded session will cover the features and templates in Windows App Studio for small businesses and explain how the foundation of a great app can be created in under and hour (4 min). The session will then mention ways to expand the functionality of the app by extending the code in vs (3 minutes) <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:415d8a9dd0ff42e2a11da5d900c29f90"" />",https://s.ch9.ms/Events/Build/2016/P438
|
129
|
+
128,Device Guard Compatible Application Development ??Getting Your App into the Circle of Trust,"Scott Anderson, Klaudia Leja","Device Guard provides a way to lock down systems so that they only run trusted applications. Security conscious organizations are deploying Device Guard across increasing numbers of machines, so it is important for developers to ensure their applications work well with Device Guard. This session will explain how developers can ensure their applications are optimized for the security benefits provided by DG and demonstrate tools and services to make it easier for IT Devs to bring their applications into the circle of trust in their organization. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:202ada6c3bd7451d80e0a5d900c29f7b"" />",https://s.ch9.ms/Events/Build/2016/P435
|
130
|
+
129,Developing and Supporting Apps for Windows as a Service,Rama Shastri,"As Microsoft moves towards a Windows as a Service model, application development cycles will need to evolve to cater to the faster release cadence. This session will explain how to decouple the application release from the Windows release cycle. We will also talk about shortening test cycles by leveraging app health data to mitigate risks. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:a44cdb267955481f82bfa5d900c29f5a"" />",https://s.ch9.ms/Events/Build/2016/P433
|
131
|
+
130,Azure Tools for Visual Studio (Azure SDK for .NET 2.9),Paul Yuknewicz (MSFT),"Check out all the new March 2016 updates in Azure tools for cloud developers deploying and diagnosing distributed applications and services. You will see updates to the Azure tools for Visual Studio that set you up to deploy your infrastructure as code using ARM, and better diagnose your application by emit both application and instrumentation using Azure Diagnostics (WAD) and Application Insights (AI) so you can diagnose a more complete topology. You will see how you can use our new Service Profiler (preview) developer service to sample, identify and fix challenging performance degrades. Last we will show you additional companion tools like the lightweight ARM tools extension for Visual Studio Code, and the standalone cross-platform Storage Explorer for Mac, Linux, and Windows that now supports Tables, Table queries, Queues, encryption, SAS attach, and more. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:146f2930f1bc47b9b724a5d900c29f52"" />",https://s.ch9.ms/Events/Build/2016/P432
|
132
|
+
131,Data Integration in the Cloud and Building Data Analytics Pipelines,Anand Subbaraj,"In this demo-driven session, learn by example about the tools available for seamless data integration in the cloud with Azure Data Factory, Azure Data Lake Store and Azure Data Lake Analytics, SQL Data Warehouse, on-premises Hadoop, other data sources and more! Hybrid cloud scenarios are becoming more and more common as organizations need to combine and transform both on-premises and cloud data for analytics and business insights. Imagine a data integration experience where it doesn?? matter where your data resides or where your processing executes, and an experience where you can monitor and manage all of your data processing from a single pane of glass. With Azure Data Factory (ADF), you can easily compose Azure services and diverse data sources into highly available, fault-tolerant data pipelines. This session will include a live demonstration of how to build and manage scalable analytics pipelines that can be applied to real world use cases in the Cortana Analytics ecosystem like device telemetry analysis, automated risk processing and customer profiling. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:98c7c07eb3234c21b957a5d900c29f4b"" />",https://s.ch9.ms/Events/Build/2016/P430
|
133
|
+
132,Using the Right Networking API for Your UWP App,"Himadri Sarkar, Sidharth Nabar","The Universal Windows Platform (UWP) has a diverse set of networking APIs to enable developers to implement a wide range of scenarios. For many networking scenarios, there are multiple options available - Which API should a developer use for a given scenario? What are the tradeoffs of using one over the other? This talk helps answer these questions by walking through some broad networking scenarios and discussing how to choose the right API for each of them. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:31ed86bcc17e4eaab8e8a5d900c29f25"" />",https://s.ch9.ms/Events/Build/2016/P426
|
134
|
+
133,Business-to-Consumer Identity Management with Azure Active Directory B2C,Swaroop Krishnamurthy,"Consumer identities are at the core of every consumer-facing application. Developers who manage them are facing growing challenges around cost, scalability and security. In this session, you will learn about Azure Active Directory B2C, an enterprise-grade, multi-tenant, cloud service that makes it easy to add secure consumer sign-up, sign-in, profile management & password reset. Consumers can use their social accounts (Facebook, Google or Microsoft account) or create new credentials to access these applications. Azure Active Directory B2C provides fully customizable user experiences, is standards-based and works cross-platform. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:d5bd142de00145929e86a5d900c29f1e"" />",https://s.ch9.ms/Events/Build/2016/P423
|
135
|
+
134,Bring a Web App to Windows in Under 5 Minutes with Windows App Studio,Peter Kruger,"Recorded session will cover a walkthrough of converting a web app into a Windows Hosted Web App (~2:30min) and will mention how to extend in vs to add more advanced functionality (2 min). <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:521d96142d974c7fb116a5d900c29f0b"" />",https://s.ch9.ms/Events/Build/2016/P417
|
136
|
+
135,Beyond Beacons: Proximal Awareness with Bluetooth LE,Kiran Pathakota,"Windows introduced support for Beacons at //Build 2015. Now, we explore some common use cases for Beacons and how they tie in with the rest of the Bluetooth APIs. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:8c25bcf072e94df2a5dfa5d900c29f03"" />",https://s.ch9.ms/Events/Build/2016/P416
|
137
|
+
136,Bluetooth Device Companion Apps for Windows 10,Kiran Pathakota,"Don't leave your device without a companion! Ease user frustration and market yourselves to potential customers by delivering a performant app experience on Windows 10. With the new Bluetooth in app pairing APIs, it is easy to guide users down the righteous path and prevent common pitfalls of the pairing process. Learn how to query for nearby Bluetooth devices, gain user consent and quickly set up your Bluetooth LE device. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:cbb403e8e62e42c1a0aaa5d900c29efa"" />",https://s.ch9.ms/Events/Build/2016/P415
|
138
|
+
137,Large-Scale Compute with Azure Batch,Mark Scurrell,"Azure Batch enables large-scale parallel and compute-intensive workloads to be easily and efficiently run in the Azure; execute your new or existing applications on tens to tens of thousands of VM??. In this demo-intensive session you??l see and learn about the many capabilities of Azure Batch, including some brand new features. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:8810c38cefcb478f96cfa5d900c29edc"" />",https://s.ch9.ms/Events/Build/2016/P411
|
139
|
+
138,Building Cross-Platform Enterprise Mobile Apps with Visual Studio and Azure App Service,Donna Malayeri,"Great apps run on any device and connect to the cloud. Learn how Azure App Service helps build great connected mobile experiences, including single sign-on, push notifications, offline data sync, and connectivity to on-premises systems. Use Mobile App client SDKs to build a native experience on multiple platforms, including Xamarin, Windows, iOS, and Android. It is now easier than ever to add a mobile app to your existing enterprise apps! <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:e657dd3f5acd4712a1cda5d900c29ec0"" />",https://s.ch9.ms/Events/Build/2016/P408
|
140
|
+
139,Advanced File Searching in UWP,Adam Wilson (APPMODEL),"By leveraging the same local search technology as Cortana, File Explorer, Edge, and others, apps can help users find the data they need when they need it. This talk will cover: - How Edge stores and displays history results in the address bar - How Cortana, Settings app, and the control panel search through the settings on your machine - Leveraging the full power of the shell property system in your app. Viewers will be able to go back and add fast local search to their apps and delight users with the same (and better) functionality as first party apps. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:3d5e64b7bcf24a50b0bea5d900c29e56"" />",https://s.ch9.ms/Events/Build/2016/P407
|
141
|
+
140,Adding Manipulations in the Visual Layer to Create Customized & Responsive Interactive Experiences,"Anthony Young, Lindsay Kubasik","Learn to enhance the user experience of your app and unleash your creativity with the new exciting element of interactivity linked to the powerful functionality of the animation engine in the visual layer. This talk show how to take animations beyond a typical time-based system and use input as the driving factor. We will start with a quick recap of how manipulations work today before moving on to building new creative and responsive interactive UI experiences for your Universal Windows Application. We will focus on how to hook up input animations to the flexibility of the visual layer to enable more customized scrolling and zooming experiences, input driven animation of effects, and other exciting responsive and interactive UI such as gesture based navigation. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:ada85027073141258fdba5d900c29e4d"" />",https://s.ch9.ms/Events/Build/2016/P405
|
142
|
+
141,A Developers Guide to Azure SQL Data Warehouse,James Rowland-Jones,"Azure SQL Data Warehouse is a scale out database service designed to answer your ad hoc queries and questions. By spreading your data across distributions SQL Data Warehouse is designed for analytics at scale. To make the most of your database there are opportunities to tailor your table design and optimize for performance. This session will cover the fundamentals of data distribution, table design and query optimization; helping you to deliver the best performance for your solution. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:e0bff457e1584a3092bfa5d900c29db8"" />",https://s.ch9.ms/Events/Build/2016/P402
|
143
|
+
142,Running Bash on Ubuntu on Windows!,"Russ Alexander, Rich Turner","<p>Running Bash on Ubuntu on Windows? Really? Yes, REALLY! In this video we??l outline why and how we??e enabling Windows 10 to run native Linux apps and tools directly on Windows! Watch to learn more and to see Bash running on Ubuntu on Windows!</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:5a3b767f7ff24ce19f3ca5d900c2a3d0"" />",https://s.ch9.ms/Events/Build/2016/P488
|
144
|
+
143,Secure and Monitor Your Network,"Vijay Tinnanur, Siva Edupuganti","<p>Context of Network Security when you build applications on cloud; How can you monitor your network and gain additional insights</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:a6db3889497d44ffa984a5d5016a99a2"" />",https://s.ch9.ms/Events/Build/2016/T699
|
145
|
+
144,Skype for Business Partner Integration Examples,"Richard Taylor, David Newman","Skype for Business enables developers to enhance the capabilities of their applications and ecosystems. Come see some real-world examples of integration scenarios that may spark your imagination! <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:424d31006b374e679297a5d5016a9999"" />",https://s.ch9.ms/Events/Build/2016/T698
|
146
|
+
145,Unlock Real-Time Predictive Insights From the Internet of Things,Santosh Balasubramanian,"Real-time placeholder, due on 3/15 EOD <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:595b546a90ce4d13beb2a5d5016a998d"" />",https://s.ch9.ms/Events/Build/2016/T697-R1
|
147
|
+
146,U-SQL: 0-60 for Big Data with .NET,Matthew Winkler,"With Azure Data Lake we??e introducing a new SQL-based language called U-SQL, that combines the familiarity of SQL with C# extensions to make Big Data processing easy, and fun. In this presentation you will learn the concepts behind the new language and see examples of how to use it to query unstructured, semi-structured and structured data <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:d1cdb0cec1af493fa2d7a5d5016a997d"" />",https://s.ch9.ms/Events/Build/2016/T696-R1
|
148
|
+
147,Building and Managing APIs on App Service,"Vladimir Vinogradsky, Darrell Miller","If you build Web APIs, internal or external, API Management is all about saving you time and money. It can make APIs easier to discover, easier to use, better controlled, perform better and more reliable. API Management takes advantage of the HTTP layered architecture to allow you to transparently add out-of-the-box functionality to your existing Web APIs. This talk will show you how to leverage API management to enable all kinds of functionality like HTTP caching, automatic retry handling, transparent versioning, tenant sharding, API fa??ading, response transformation, fragment caching, JWT authentication, logging and monitoring. API Management lets you focus on building making your APIs awesome and not waste time re-inventing standard HTTP mechanisms. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:5fb372c70dc84e30a2aca5d5016a9975"" />",https://s.ch9.ms/Events/Build/2016/T695
|
149
|
+
148,Automate Business Process With Logic Apps (Deep Dive),"Kevin Lam, Jim Harrer","See how you can use Azure Logic Apps to automate business process that integrate with services in the cloud without using code. This session will introduce Logic App capabilities including its designer and DSL, how to take advantage of its management capabilities and exposing programmatic triggers with webhooks. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:2bcab74549784fd3b9f0a5d5016a996f"" />",https://s.ch9.ms/Events/Build/2016/T694
|
150
|
+
149,Building MicroServices with Service Fabric,Matthew Snider,"MicroServices are on everyone's mind, come learn from the Service Fabric team why 25min is enough to get you excited on what we have to offer for your productivity <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:89b603ecae6c4e42b593a5d5016a9968"" />",https://s.ch9.ms/Events/Build/2016/T693
|
151
|
+
150,Azure Functions Under the Hood,"Yochay Kiriaty, Matthew Henderson","Azure functions is a new PaaS service which allows you to write "functions," short pieces of code in the language of your choosing which respond to and process events. In this session, we??l look at some of the advanced features of Azure Functions and how they can be added to a development workflow. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:071faef9f23b48c4968ea5d5016a995f"" />",https://s.ch9.ms/Events/Build/2016/T692
|
152
|
+
151,Building an Application for the Azure Marketplace,Khalid Mouss,"Azure Marketplace is the place where Azure customers and partners meet. Come learn why use the marketplace and how to deploy and manage single and multi-tier solutions. As an existing or potential partner, we will also drill down and show case how to build and publish new solutions using Azure marketplace taking advantage of Azure resource manager (ARM) and Azure extensibility models and the benefits of using the platform to go to market for your solutions. Once you build an application that delights your customers, you can monetize it through the Microsoft Azure Marketplace. In this session, you will also hear about new upcoming Test Drive solutions. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:23e0f523f547461591b7a5d5016a9959"" />",https://s.ch9.ms/Events/Build/2016/T691
|
153
|
+
152,"Deploying, Managing, and Controlling Apps with Azure Resource Manager",Ryan Jones,"In this session, we??l talk about how ARM helps you author, deploy, monitor, and manage modern applications in the cloud. In parallel, we??l discuss how features such as auditing, role based access control, resource policy, and KeyVault ensure that your apps meet the governance requirements of your customers. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:abe694971a7f4ca98971a5d5016a9953"" />",https://s.ch9.ms/Events/Build/2016/T690
|
154
|
+
153,Leveraging the New Azure CDN APIs to Build ??icked Fast??Applications,"Manling Zhang, Kevin Zhang","Azure CDN offers developers a new CDN object model, APIs, and multiple SDKs to help you build global applications with massive scale, high performance and security. We will quickly walk you through the Azure CDN solution space. Next, we will demonstrate how easy it is to use the APIs to provide you the performance, reliability, and security you need to build world class applications. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:00a784e400b0450d94c8a5d5016a9937"" />",https://s.ch9.ms/Events/Build/2016/T688
|
155
|
+
154,Premium Messaging & Messaging Scale,Dan Rosanova,"Includes how Halo, Xbox Live Events & Office use Event Hubs for large scale telemetry <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:67b19ff1f30d4bc69cd9a5d5016a991d"" />",https://s.ch9.ms/Events/Build/2016/T686
|
156
|
+
155,Integrating Power BI into Your Own Applications ??Featuring Real World Demos,"Sanjay Soni, Josh Caplan","Visualizing data in applications is a powerful communications tool. Learn how to do this easily with Power BI <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:f02833b6aa7d41f885ffa5d5016a9913"" />",https://s.ch9.ms/Events/Build/2016/T685
|
157
|
+
156,"Intelligent Systems: Advanced Analytics in Action for Retail, Healthcare and Manufacturing","Seayoung Rhee, Giampaolo Battaglia","In this theatre session, we??l be demoing key scenarios leveraging information management, big data and advanced analytics capabilities in industries such as retail, healthcare, or manufacturing. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:18051f16e7654755b69fa5d5016a9904"" />",https://s.ch9.ms/Events/Build/2016/T684
|
158
|
+
157,Building Analytics for the Modern Business,Matt Usher,"Modern businesses need to answer questions quickly. We??l explore how you can deliver a powerful data warehouse solution to answer these questions. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:f2882b4935864e399aeba5d5016a98e9"" />",https://s.ch9.ms/Events/Build/2016/T682
|
159
|
+
158,Deep Dive Into IOT Starter Kit App: Architecture and Getting Started on Building Your IOT Solution,"James Montemagno, Harikrishna Menon","In this session Hari and James will go deeper into MyDriving IOT Starter Kit featured during the ScottGu keynote. Learn how we designed the architecture around this app, the patterns we used and how code reuse saved the team, time. Get started on taking our solution and building your own Azure IOT app. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:adb9c3ab37974dd79e3ba5d5016a93c4"" />",https://s.ch9.ms/Events/Build/2016/T673-R1
|
160
|
+
159,Tips for Using the F12 Edge Dev Tools,Andy Sterland,"This talk will cover tips & demos to make you more productive diagnosing issues in Edge, specifically looking at: working with CSS (changes, editing & diffing), pro tips for making JavaScript debugging a little less painful (set next statement, just my code, etc.) and using the F12 Edge Developer tools to debug & profile UWPs. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:669a9f1d371f425ea71ea5d5016a93b4"" />",https://s.ch9.ms/Events/Build/2016/T672-R1
|
161
|
+
160,Python: Fill in the Gaps,Steve Dower,"You probably already code in C# or JavaScript, but how do you deal with problems that don?? fit these languages? Come find out how Python can fill that gap. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:3878e91ce2004575bf1fa5d5016a93a9"" />",https://s.ch9.ms/Events/Build/2016/T670-R1
|
162
|
+
161,Using HockeyApp with Xamarin Apps,Joshua Weber,"<p>Come learn how pairing HockeyApp with Xamarin can provide a consistent mobile DevOps solution across all mobile app platforms. HockeyApp provides a comprehensive beta distribution platform, rich crash analytics, pairs with Visual Studio Team Services and common build and work management tools, and provides tools to understand user feedback and behavior. This session shows how pairing these tools can create a consistent workflow to increase your team?? development velocity.</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:10b5f44ecfec4009bd52a5d5016a9389"" />",https://s.ch9.ms/Events/Build/2016/T668-R1
|
163
|
+
162,"Native iOS, Android, & Windows Apps from C# and XAML with Xamarin.Forms",Mike James,"Building cross-platform native UIs with one shared codebase was once just a dream. With Xamarin.Forms, this dream is now a reality. Xamarin.Forms allows you to build a native UI for three platforms with one shared C# codebase. During this session we will cover the Xamarin.Forms library to share up to 99% of your code across iOS, Android, and Windows Phone. Moreover, we will really focus on the code with several live coding adventures throughout the entire session. When you leave you will have the knowledge to create your first iOS, Android, and Windows Phone mobile apps in C# with Xamarin and Xamarin.Forms. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:af5460e2c2bd4c1499c0a5d5016a9378"" />",https://s.ch9.ms/Events/Build/2016/T667-R1
|
164
|
+
163,Interactive Analytics with Application Insights,Guru Kirthigavasan,"Diagnostics or usage analysis of any application is never straight forward. The current tools available for developers and dev teams are very limiting. With Application Insights Analytics, we allow developers to query their application data in an adhoc and interactive fashion. Our goal is to help developers answer hardest questions about their applications instantly. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:eb2e07eb29b045269673a5d5016a9372"" />",https://s.ch9.ms/Events/Build/2016/T666
|
165
|
+
164,Getting Started with F# on .NET Core,David Stephens,"There?? more to .NET Core than just C#. F# is a functional-first .NET language that can help you write better software with less code. In this session, you'll learn how to get started with F# on .NET Core. We??l see how the .NET CLI makes it easy to create and run an F# project, then check out how to use visual studio Code to edit F#, even on OS X and Linux. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:ae414a43be8c40f8a2d7a5d5016a9351"" />",https://s.ch9.ms/Events/Build/2016/T661
|
166
|
+
165,Make NuGet Your Company?? Component Repository,??ichard Lander,"NuGet is a free and open-source package manager from Microsoft. Many people think of NuGet as only a public repository of packages, but that?? not true. You can use NuGet as your company?? private repository as well. In this session we??l take a look at how you can set up your own private NuGet server within your own company to manage your own components. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:2186efb6acf644df9bfea5d5016a9334"" />",https://s.ch9.ms/Events/Build/2016/T659-R1
|
167
|
+
166,Tools for XAML Apps in Visual Studio vNext,Unni Ravindranathan,"Visual Studio vNext has some great XAML tooling and we'll dive deeper to show you what's new! <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:c4ca2ba92b90422a8a6aa5d5016a9320"" />",https://s.ch9.ms/Events/Build/2016/T658-R1
|
168
|
+
167,Instantly Releasing Updates to Your React Native Apps,Jonathan Carter,"React Native is a compelling platform for building cross-platform mobile apps, and like other JavaScript-based solutions, can take advantage of the ability to perform ??ot code pushes??of your code and assets, without needing to submit them to the stores. In this session, we??l discuss how the CodePush service makes performing over-air-updates easy, and how to integrate it into an existing React Native app <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:a910e0567004402ba9e0a5d5016a92a8"" />",https://s.ch9.ms/Events/Build/2016/T657
|
169
|
+
168,Using the Microsoft Band with Windows 10 Background Events,"Ali Alvi, Tony Andrews","In this session, we'll highlight recent updates to the latest Microsoft Band SDK, and how to use them to use the UWP background execution model to create interactive experiences on the Microsoft Band. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:86ab68717b264c929b11a5d5016a927a"" />",https://s.ch9.ms/Events/Build/2016/T654-R1
|
170
|
+
169,How to Train Your Robot with Sensors and Bluetooth,"Kiran Pathakota, Rinku Sreedhar","Watch how a Universal Windows Platform app can use a combination of Bluetooth and sensor APIs to teach a robot how to respond to contextual changes in the world around it. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:d4b0d22fc9564bbfb878a5d5016a9268"" />",https://s.ch9.ms/Events/Build/2016/T653-R1
|
171
|
+
170,Building Accessible UWP Apps,"Mariah Dunn, Sean Hayes","See how to identify and overcome more advanced challenges when making data-bound apps more accessible. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:9abf6e843c034b3faf4ea5d5016a925b"" />",https://s.ch9.ms/Events/Build/2016/T652-R1
|
172
|
+
171,Adapt Your App for Xbox One and TV,"Rob Cameron, Lynnette Reed","We'll look at practical design considerations and best practices that developers should take into account when optimizing their app experience for the Xbox One platform. We'll demonstrate real-world design-driven code and real app examples that turn your app into a premium Xbox One experience. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:a428638b154a40eeabbca5d5016a922c"" />",https://s.ch9.ms/Events/Build/2016/T651-R1
|
173
|
+
172,Windows Store for Business and TeamViewer,"Jan Kalis, Alfredo Patron","The Windows Store is more than just a consumer app store. Join the Store team and TeamViewer as we discuss how the Windows Store for Business can help you reach new users in the SMB and prosumer space. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:7db70fd049e4486b972da5d5016a8c23"" />",https://s.ch9.ms/Events/Build/2016/T647-R1
|
174
|
+
173,Surface Hub: Designing and Building UWP Apps for the Large Screen,"Michael Hilsdale, Paul Barr","Designing for the Surface Hub means more than just a large canvas. We'll talk about the challenges and benefits of building a productive Surface Hub experience. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:8c18db21db48420db2a4a5d5016a8bd4"" />",https://s.ch9.ms/Events/Build/2016/T646-R1
|
175
|
+
174,Five Things You Didn?? Know You Could Build with Microsoft Edge,"Charles Morris, Sean Lyndersay","Kick back and watch as we show off cool website code that you may not have thought was possible -- from an immersive game using WebGL to using biometric authentication on your website using Windows Hello. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:8b86062324014c45a9b8a5d5016a8bbc"" />",https://s.ch9.ms/Events/Build/2016/T645-R1
|
176
|
+
175,The Magic Mirror: Powered by a Hosted Web App and Windows 10 on Raspberry Pi,Kiril Seksenov,"Check out a web-based app using a Raspberry Pi and camera to create a mirror that readies the owner to take on their day. In this session, we'll talk about how hosted web apps provide a new way of delivering rich local experiences with dynamic, server-side content. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:e1ae2aa618e74646b25fa5d5016a8b92"" />",https://s.ch9.ms/Events/Build/2016/T644-R1
|
177
|
+
176,Getting to Know Office UI Fabric,Eric Thompson,"You may have known that Office UI Fabric is the official skin for Office Add-ins, but did you know that it?? also used by a myriad of teams within Office and Office 365? How about that there are multiple versions in the works for native platforms like iOS? Come learn more about Fabric including its origins, the philosophy behind the toolkit, and what?? on the roadmap for the official in-code representation of the Office Design Language. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:cfb28a1065b248caa67ca5d5016a8b36"" />",https://s.ch9.ms/Events/Build/2016/T641
|
178
|
+
177,Title and Icon Generator Demo,Mike Jacobs,"A demo of the UWP tile and icon generator. Learn how to use Photoshop to generate the 68 recommended image assets for displaying different screen sizes. Ensure your app?? icons look great, and update them easily. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:c3f8d815fd8c41ae92c0a5d5016a8b2a"" />",https://s.ch9.ms/Events/Build/2016/T632
|
179
|
+
178,Windows Weekly,"paul thurrott, Mary Jo Foley, Michelle Arney","<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:9342dfbe1fd94f27af94a5d5016a8b24"" />",https://s.ch9.ms/Events/Build/2016/T631
|
180
|
+
179,Building Cross-Platform Experiences for Microsoft Band,"Ali Alvi, Tony Andrews","Wearables are becoming more and more prevalent in our worlds, bringing technology to our fingertips through constant connectivity and presence awareness. Wrist-worn wearables are at the leading edge of this space and Microsoft Band is an example of how advanced technology is now found in small, wearable form factors. In this session, you will find out how you can use the tools provided by Microsoft Band, in conjunction with other technologies available, to enable rich and contextually aware scenarios for users. We will showcase how you can use background execution on the phone to simulate local experiences on Microsoft Band. We will do case studies of building x-platform applications using Xamarin to control devices from your Band. Additionally, we will highlight how you can extend any mobile application experience to Microsoft Band with a case study that shows how we are bringing the power of IFTTT to Microsoft Band. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:6f1177c8c6d843f0a56da5d5016a8b1c"" />",https://s.ch9.ms/Events/Build/2016/T630
|
181
|
+
180,Skype for Business Developer Platform Update,"Richard Taylor, David Newman","Learn how to extend the capabilities of your applications with Skype for Business, including new capabilities for Skype for Business Online. We??l explore the new online APIs, the web SDK, and give you a sneak peek into the upcoming app SDK. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:5a4bce46df884a3195cca5d5016a8b16"" />",https://s.ch9.ms/Events/Build/2016/T629
|
182
|
+
181,"Maximize Usage, Retention and Monetization for Mobile Applications Using Azure Mobile Engagement",Piyush Joshi,"A quick overview of Azure Mobile Engagement - a newer SaaS service on Azure platform which enables app publishers and app owners to easily track usage behavior, create rich and dynamic segments and send targeted system and in-app push notifications, polls etc. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:6379b92c50c94cf8bdf4a5d5016a8b08"" />",https://s.ch9.ms/Events/Build/2016/T628
|
183
|
+
182,Creating Cross-Platform Apps with Angular 2,Brad Green,"In the early goals of Angular 2, we focused on creating a full platform that encompasses even more of the needs of our developer community. Mobile is all the rage these of late, but the majority of successful product teams have investment across web, mobile web, installed mobile apps and even installed desktop applications. From individual developers all the way to CIOs, folks would like to reuse both their development expertise and their code across these platforms to deliver quickly and at minimal cost. Please join us for a chat on how we're addressing this full space of development needs in Angular 2. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:33ed90a702dd4fce960ba5d5016a8afb"" />",https://s.ch9.ms/Events/Build/2016/T627
|
184
|
+
183,"MeetingSquared, An Example of a SharePoint and Outlook Add-in Working Together","Sonya Koptyev, Alister Esam, Tim Haines","MeetingSquared is a product that uses an Outlook and SharePoint add-ins to provide agenda lead meetings. The SharePoint add-in is used to manage agendas, votes, actions and documents for any type of meeting. From within Outlook, MeetingSquared allows you to take emails and attachments and add them to your agendas set up in SharePoint as well as allowing you to view meeting agendas from within Outlook. There is than an Azure web application to provide a drag and drop UI for the user. Data is also served up in a Windows app and can be exported to OneNote. The presentation will run through how the product integrates with all the Microsoft components but in particular the connection between Outlook and SharePoint. It will highlight how we have built both systems using Azure and connected the two add-ins together to give more functionality. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:1158a8a7cb7a477bbdbea5d5016a8adf"" />",https://s.ch9.ms/Events/Build/2016/T625
|
185
|
+
184,U.S. Imagine Cup Award Presentation,John Shewchuk,"Join us at Build 2016 as the top U.S. Imagine Cup awards are announced. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:5ec5b4093087440aadc8a5d5016a8ac2"" />",https://s.ch9.ms/Events/Build/2016/T623
|
186
|
+
185,Gaming at Cloud Scale,"Ben Adams, James Niesewand","Building a shardless, real-time twitch MMO in the cloud requires new ways of thinking. In this session Illyriad Games will share practical insights from the development of Age of Ascent that can be applied to any hyper scale system. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:46d08364fe2d4fbf8288a5d5016a8aa6"" />",https://s.ch9.ms/Events/Build/2016/T622
|
187
|
+
186,Working with Microsoft on Open Source: Cordova and ReactNative,"Ryan Salva, Brian Leroux, James Ide, Jesse MacFadyen","In the last two years, Microsoft has surprised many by open sourcing major parts of the Microsoft platform, but we also contribute to projects started by others. Join custodians of the Apache Cordova and ReactNative projects for a panel discussing Microsoft's contributions to two of JavaScript's most vibrant communities. Brian Leroux and Jess MacFayden are two founding developers of PhoneGap/Cordova. James Ide is a major contributor to ReactNative and Ryan J. Salva own JS Mobile tooling for Visual Studio. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:c3a78fa4978e4993b771a5d5016a8a93"" />",https://s.ch9.ms/Events/Build/2016/T621
|
188
|
+
187,Personal Assistants: The New Context-Aware Digital Runtime,"Marcus Ash, Michael Calcagno","Personal computing has evolved from operating systems to internet browsers being the runtime where users find and engage with applications and services. In the new world of AI, digital personal assistants will be the new context aware runtime, connecting consumers to the right experiences at the right time. Listen to the Cortana leadership share their vision for how personal assistants and the developer ecosystem will engage in the future. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:b0500b677fe34bdbb84fa5d5016a8982"" />",https://s.ch9.ms/Events/Build/2016/T620
|
189
|
+
188,"Overview of the MyDriving An Azure IOT and Mobile Sample application, as shown in the ScottGu keynote","James Montemagno, Harikrishna Menon","The MyDriving IOT Starter Kit is a canonical example of a highly scalable, performant, available and cross-platform IOT service and application. This application brings together our best Azure, developer platform and service offerings to showcase the breadth and depth of Microsoft offerings in this space. The architecture guidance and the associated documentation provides an in-depth insight into the best practices and patterns adopted by the team during development. Learn how to we went about building and designing this solution, as well as how you can go about building and deploying your own version of the service and application. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:43cc640f39c44618a313a5d5016a8979"" />",https://s.ch9.ms/Events/Build/2016/T619
|
190
|
+
189,"Build Cool Apps with the Microsoft Graph, Tap into the Intelligence and Reach Millions of Users","Dan Kershaw, Yina Arenas","Join this session to learn how easy it is to use the Microsoft Graph to build apps. In the first part we will show apps that access data from the consumer cloud and the commercial cloud using a single code base. In the second part we will show how apps can access rich insights and rich relationships calculated by the Office Graph, the same technology that powers Delve, now exposed in APIs. The Microsoft Graph is the gateway to Office 365 and Microsoft cloud data, insights and rich relationships. It's the easiest way to integrate with user?? data and build smarter and contextual aware applications that leverage the power of Office. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:08138070f4434222820ba5d5016a895d"" />",https://s.ch9.ms/Events/Build/2016/T617
|
191
|
+
190,Windows in the Smart Home: The Internet of Things and UWP,Jason Farmer,"The Internet of Things in the home represents one of the next big things in tech, with increased consumer interest, low cost hardware, and wireless connectivity solutions contributing to an explosion in home automation accessories and peripherals. During this session, find out about the work that?? being done to put Windows in the center of the modern home. Learn how Windows is embracing the smart home and come see how Windows enables developers to leverage a wide variety of Microsoft services and applications to light up new and exciting ways to interact with all sorts of Things around them. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:75f5fec4e7f045cbbcc1a5d5016a8952"" />",https://s.ch9.ms/Events/Build/2016/T616
|
192
|
+
191,Introduction to NVIDIA GPUs in Azure,"Karan Batta, Randy Groves","Microsoft Azure will be offering state of the art GPU visualization infrastructure and GPU compute infrastructure for various different scenarios like gaming, streaming, transcoding, machine learning, visualized CAD applications and many more other workloads that utilize GPUs. This session will give you a good technical overview of the technology that?? used to enable these GPUs into the Azure infrastructure and a roadmap including scenarios that we aim to fill with this capability. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:14dac00ec74e4b0899d0a5d5016a8947"" />",https://s.ch9.ms/Events/Build/2016/T615
|
193
|
+
192,"Cross-Platform at Microsoft: Xamarin, Cordova, Unity and C++ Panel","James Montemagno, Ryan Salva, Ankit Asthana, Max Lynch, Jb Evain","There?? a perfect tool for every job and Microsoft?? mobile toolbox is BIG. Join mobile developers from Xamarin, Cordova, Unity and C++ in a candid conversation about the strengths and comparative differences of each technology. The panel will open the floor to questions from the audience. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:bcd1582f4a2641449b60a5d5016a8939"" />",https://s.ch9.ms/Events/Build/2016/T614
|
194
|
+
193,Getting Started in Open Source with Scott Hanselman,Scott Hanselman,"Making that first pull request to an open source project can be a scary and daunting thing, even for a seasoned developer. ??hat if people laugh at my code? What if I break something? What if I didn?? squash my commit correctly???Learning the ropes can be challenging, not just the technical but also the social aspects. In this session, Scott Hanselman demystifies the magic of open source development and gives you practical advice on how to get started and get along with open source communities. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:ac4f94fc6e0e47388d34a5d5016a8737"" />",https://s.ch9.ms/Events/Build/2016/T613
|
195
|
+
194,Intelligence Apps Leadership Panel,"Pablo Castro, Seth Juarez, John Macintyre, Judy Meyer, Danielle Dean","Adding intelligence to apps is not just for the largest, most global apps out there. Apps of any size can add intelligence. Hear senior leaders and experts across data, machine learning, and analytics discuss why and how to add intelligence into existing and new applications. This session will help guide you through how to think through the types of intelligence that can be added to apps. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:ad6a296a12cf4c0b91d1a5d5016a8731"" />",https://s.ch9.ms/Events/Build/2016/T612
|
196
|
+
195,The Skype Experience: The Future of Communications,"Krishnan Ananthanarayanan, Nick Cordrey","In the Skype developer session you will hear about some new and innovative ways we are going to enhance messaging experiences today, and into the future. Microsoft believes that adding intelligence into every day conversations will empower every person and every organization on the planet to achieve more. This is the way you??e always wanted to communicate, but never realized it could be so easy. I?? going to show you our vision for intelligence integrated into one of the most popular ways people connect today ??Skype. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:9872101af07c4d4db1aaa5d5016a8728"" />",https://s.ch9.ms/Events/Build/2016/T611
|
197
|
+
196,Intelligence at Your Fingertips: Microsoft Knowledge and Intelligence APIs,"Allison Light, Anna Roth","In this session, we??l cover how you can use our intelligence APIs to build fresh, differentiated apps powered by advanced research from Microsoft. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:c498d02b7e074dd3abb6a5d5016a8721"" />",https://s.ch9.ms/Events/Build/2016/T610
|
198
|
+
197,Designing Compelling Mixed Reality Experiences,Joshua Walton,"Microsoft HoloLens was developed to transform the ways we communicate, create, collaborate, and explore. This talk will frame important questions about Mixed Reality and how you might begin to think about taking advantage of this new opportunity. Joshua Walton, Principal Design Manager on Microsoft HoloLens, will discuss six areas of interest Microsoft have identified for creating compelling experiences in Mixed Reality. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:d217d5f6d90b4ad59189a5d5016a8717"" />",https://s.ch9.ms/Events/Build/2016/T609
|
199
|
+
198,Building a 3D Game with Unity and Visual Studio in 30 Minutes,Jb Evain,"Are you a .NET developer who always dreamed of writing video games? In this short and fun session, we??l do exactly this. We??l start a new project, and write a 3D game in C# with Visual Studio and Unity, from scratch, in almost no time. You??l learn about Unity, a powerful tool to create games that span all modern platforms: consoles, mobiles, desktops and even HoloLens, and how you can leverage its integration with Visual Studio to use your favorite C# IDE to write games. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:4bdcba05b72440c6aac4a5d5016a8711"" />",https://s.ch9.ms/Events/Build/2016/T607
|
200
|
+
199,Inside the Windows Insider Program,"Bill Karagounis, Gabriel Aul","Join us to hear from two of the principal architects of the Windows Insider Program for a candid conversation about the past, present, and future of the program. They will share some of the history, provide a peek inside the day to day operations, and share some thoughts on how it will evolve in the future. The Windows Insider Program is the largest public preview program in Microsoft history and has been an important source of customer feedback used to develop Windows 10. More than 7 Million people have signed up to receive preview builds, report problems, and share suggestions to help make Windows 10 great. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:994843067fbe4eccb5d4a5d5016a870c"" />",https://s.ch9.ms/Events/Build/2016/T606
|
201
|
+
200,Start-up Panel,"Sonya Koptyev, Christine Matheney, Deb Noller, Ainsley Braun, Anna-Katrina Shedletsky, Esther Pun","Join us Wednesday in The Hub during the lunch session for a special Women in Technology-focused set of activities. We will have a panel of women leaders, followed by a special networking event, and then a second panel of women startup leaders. We will discuss topics such as what they think would be the most important piece of advice they received when starting their careers, what keeps them excited about technology, and the best piece of advice they would give young women looking into STEM careers today. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:6956096e10f044d18d9ba5d5016a8706"" />",https://s.ch9.ms/Events/Build/2016/T605
|
202
|
+
201,Women's Leadership Panel,"Lara Rubbelke, Sonya Koptyev, Julia White, Julia Liuson, Mitra Azizirad","Join us Wednesday in The Hub during the lunch session for a special Women in Technology-focused set of activities. We will have a panel of women leaders, followed by a special networking event, and then a second panel of women startup leaders. We will discuss topics such as what they think would be the most important piece of advice they received when starting their careers, what keeps them excited about technology, and the best piece of advice they would give young women looking into STEM careers today. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:a98d916f71d449ddbe66a5d5016a86f7"" />",https://s.ch9.ms/Events/Build/2016/T603
|
203
|
+
202,Connecting Your Apps to the Conversations of over 60M Office 365 Users,"Pretish Abraham, Raju Nagalinga S, Simeon Duong","Conversations is the new platform for apps. By connecting apps like Trello, Twitter, Uservoice and more, Outlook keeps your team up to date with all the conversations and updates they care about in one place! With over 60M monthly active commercial users, and 50,000 new small business customers signing up every month, Office 365 connectors can help connect and engage more users to your app. Connectors is now broadly available in Outlook 2016, Outlook web app and the Group mobile apps. Learn how to create deeply engaging user experiences with practical lessons from the experts that built the Asana and Uservoice Connectors. Building a connector is easy-peasy, we will walk you through the developer and submission process, and help get you started in no time. <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:cc3c6a76d89a41f88a91a5d5016a86f1"" />",https://s.ch9.ms/Events/Build/2016/T602
|
204
|
+
203,Continuum for Phone,"Liz Threlkeld, Issa Khoury","With Windows 10, your phone can work like your PC. Continuum for phone enables you to connect a Windows mobile device to any external display with the new Microsoft Display Dock, USB-C, or Miracast. Users can leverage a keyboard and mouse and other peripherals to get the productivity and entertainment value of a PC with the portability, cost, and convenience of a single device. Come see Continuum in action! <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:1abbba7f9b9e41539798a5d5016a86d9"" />",https://s.ch9.ms/Events/Build/2016/T601
|
205
|
+
204,Close of Build,Seth Juarez,"<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:91e8d2a0c939443586fda5d401171eb3"" />",https://s.ch9.ms/Events/Build/2016/C926
|
206
|
+
205,.NET Core,"Scott Hunter, Seth Juarez, Beth Massi, ??ichard Lander","<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:2d45c46b320048149819a5d401171ea2"" />",https://s.ch9.ms/Events/Build/2016/C924
|
207
|
+
206,Office Dev Show Live,"Jeremy Thake, Sonya Koptyev, Yina Arenas","<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:6e071984c71d4b1291e9a5d401171e97"" />",https://s.ch9.ms/Events/Build/2016/C923
|
208
|
+
207,"Smarter, more engaging experiences with Bing","Seth Juarez, Gurpreet Pall","<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:0d63f27b16da46ef8149a5d401171e8e"" />",https://s.ch9.ms/Events/Build/2016/C922
|
209
|
+
208,DevOps and Visual Studio Team Services,"Dan Fernandez, Donovan Brown","<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:20630bfcddee4102be37a5d401171e84"" />",https://s.ch9.ms/Events/Build/2016/C921
|
210
|
+
209,The Future of .NET Languages,"Mads Torgersen, Dustin Campbell, Anthony D. Green, Seth Juarez, David Stephens","<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:fa19be8e37fc47c0b883a5d401171e7d"" />",https://s.ch9.ms/Events/Build/2016/C920
|
211
|
+
210,Data Science on Azure,"Seth Juarez, Lara Rubbelke, Matthew Winkler","<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:de392fe0debf495a9c2aa5d401171e75"" />",https://s.ch9.ms/Events/Build/2016/C919
|
212
|
+
211,Mark Russinovich Live,"Mark Russinovich, Seth Juarez","<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:784f5714dddf43eea0a6a5d401171e6e"" />",https://s.ch9.ms/Events/Build/2016/C918
|
213
|
+
212,Xamarin Live,"Miguel de Icaza, Seth Juarez, Amanda Silver","<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:b314d687574e4f3a9fc7a5d401171e5e"" />",https://s.ch9.ms/Events/Build/2016/C916
|
214
|
+
213,Windows Bridge for iOS,"Seth Juarez, Salmaan Ahmed, Nick Gerard, Ryan Haning, Dustin Howett","<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:ff27c05f3bc04859b609a5d401171e4a"" />",https://s.ch9.ms/Events/Build/2016/C914
|
215
|
+
214,Gabriel Aul Live,"Seth Juarez, Gabriel Aul","<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:03945393e056401aa8b7a5d401171e3f"" />",https://s.ch9.ms/Events/Build/2016/C913
|
216
|
+
215,Moving Forward with ASP.NET,"Jon Galloway, Seth Juarez, Mads Kristensen, ??ichard Lander","<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:5bc6c1cc05924ba58bbda5d401171e38"" />",https://s.ch9.ms/Events/Build/2016/C912
|
217
|
+
216,"HoloLens - Devs behind ""Share your ideas""","Seth Juarez, BJ Malicoat (XBOX), Karim Luccin, Michael Felice, Vanessa Arnauld","<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:4cf0e3f43d874c5390eda5d401171e2a"" />",https://s.ch9.ms/Events/Build/2016/C910
|
218
|
+
217,The Future of Visual Studio,"Seth Juarez, Amanda Silver","<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:6ee7a40e4fa44e2da559a5d401171e23"" />",https://s.ch9.ms/Events/Build/2016/C908
|
219
|
+
218,Anders Live,"Anders Hejlsberg, Seth Juarez","<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:95360e0fb899490f8daca5d401171e12"" />",https://s.ch9.ms/Events/Build/2016/C907
|
220
|
+
219,Linux Command Line on Windows,"Scott Hanselman, Russ Alexander, Ben Hillis, Dustin Kirkland","<p>Linux Command Line on Windows</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:ea9a3743fa8e4ca787fba5d401171e0a"" />",https://s.ch9.ms/Events/Build/2016/C906
|
221
|
+
220,Kevin Gallo Live,"Kevin Gallo, Seth Juarez","<p>Kevin Gallo on Channel 9 Live answering Q&A from our viewers. Make sure to catch his <a href=""https://channel9.msdn.com/Events/Build/2016/KEY01"">Day 1 Keynote</a> presentation.</p> <img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:296b57faa5c443e995b9a5d401171dfb"" />",https://s.ch9.ms/Events/Build/2016/C904
|
222
|
+
221,Conversation as a Platform,"Gurdeep Singh Pall, Seth Juarez, Lilian Rincon, Yasmin Khan","<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:bf706abb6e6a470a95eba5d401171deb"" />",https://s.ch9.ms/Events/Build/2016/C902
|
223
|
+
222,Building Intelligent Apps,"Seth Juarez, Ben Tamblyn, Derrick Connell, Mark Miller","<img src=""http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=https://s.ch9.ms/Events/Build/2016/RSS&WT.dl=0&WT.entryid=Session:RSSView:8c55e0030e5742acadb9a5d401171de3"" />",https://s.ch9.ms/Events/Build/2016/C901
|
metadata
ADDED
@@ -0,0 +1,114 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: embulk-output-azuresearch
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Yoichi Kawasaki
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-08-31 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rest-client
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: embulk
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.8.13
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.8.13
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 1.10.6
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.10.6
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '10.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '10.0'
|
69
|
+
description: Dumps records to Azure Search
|
70
|
+
email:
|
71
|
+
- yoichi.kawasaki@outlook.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitignore"
|
77
|
+
- ChangeLog
|
78
|
+
- Gemfile
|
79
|
+
- LICENSE.txt
|
80
|
+
- README.md
|
81
|
+
- Rakefile
|
82
|
+
- VERSION
|
83
|
+
- embulk-output-azuresearch.gemspec
|
84
|
+
- lib/embulk/output/azuresearch.rb
|
85
|
+
- lib/embulk/output/azuresearch/client.rb
|
86
|
+
- lib/embulk/output/azuresearch/constants.rb
|
87
|
+
- samples/config-csv2azuresearch.yml
|
88
|
+
- samples/create_sample_index.sh
|
89
|
+
- samples/sample_01.csv
|
90
|
+
homepage: https://github.com/yokawasa/embulk-output-azuresearch
|
91
|
+
licenses:
|
92
|
+
- MIT
|
93
|
+
metadata: {}
|
94
|
+
post_install_message:
|
95
|
+
rdoc_options: []
|
96
|
+
require_paths:
|
97
|
+
- lib
|
98
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0'
|
103
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
104
|
+
requirements:
|
105
|
+
- - ">="
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
version: '0'
|
108
|
+
requirements: []
|
109
|
+
rubyforge_project:
|
110
|
+
rubygems_version: 2.6.2
|
111
|
+
signing_key:
|
112
|
+
specification_version: 4
|
113
|
+
summary: Azure Search output plugin for Embulk
|
114
|
+
test_files: []
|