forked from Webbprogrammering/websoft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths07-01-dotnet_core.html
270 lines (145 loc) · 5 KB
/
s07-01-dotnet_core.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
<!doctype html>
<html lang="sv">
<meta charset="utf-8" />
<title>websoft</title>
<!-- Mithril HTML Slideshow styles -->
<link href="css/mithril-slideshow.css" rel="stylesheet" />
<!-- Code formatting using highlight.js -->
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/tomorrow.css">
<script src="js/highlight.pack.js"></script>
<!-- Text formatting using Markdown through showdown.js -->
<script src="js/showdown.min.js"></script>
<!-- Here comes the slides in order -->
<script data-role="slide" data-markdown type="text/html">
# Software Development for the Web
## .NET Core
### Mikael Roos
</script>
<script data-role="slide" data-markdown type="text/html">
# Agenda
* .NET Core
</script>
<script data-role="slide" data-markdown type="text/html">
# Compare
* C# and Java are similar languages
* Typed statically, strongly, and manifestly
* PHP/JavaScript dynamically typed
* Object-oriented (multiparadigm)
* Designed with semi-interpretation or runtime just-in-time compilation
* Curly brace languages, like C/C++, PHP, JavaScript
</script>
<script data-role="slide" data-markdown type="text/html">
# .NET Core
* Cross platform
* Development environment
* `dotnet`
* Version 3.1
</script>
<script data-role="slide" data-markdown type="text/html">
# Roadmap
* 2014 .NET to be .NET Core 1.0 opensource xplatform
* 2019 .NET Framework 4.8 (end of road)
* 2019 .NET Core 3.1
* 2019 .NET Core is the Future of .NET
* 2019 .NET 5 = .NET Core vNext
</script>
<script data-role="slide" data-markdown type="text/html">
# .NET
* .NET is a free, cross-platform, open source developer platform for building many different types of applications.
* With .NET, you can use multiple languages, editors, and libraries to build for web, mobile, desktop, gaming, and IoT.
</script>
<script data-role="slide" data-markdown type="text/html">
# Languages
</script>
<script data-role="slide" data-markdown type="text/html">
# Languages...
* C# is a simple, modern, object-oriented, and type-safe programming language.
</script>
<script data-role="slide" data-markdown type="text/html">
# Languages...
* F# is a cross-platform, open-source, functional programming language for .NET. It also includes object-oriented and imperative programming.
</script>
<script data-role="slide" data-markdown type="text/html">
# Languages...
* Visual Basic is an approachable language with a simple syntax for building type-safe, object-oriented apps.
</script>
<script data-role="slide" data-markdown type="text/html">
# Cross platform
</script>
<script data-role="slide" data-markdown type="text/html">
# Cross platform...
* .NET Core is a cross-platform .NET implementation for websites, servers, and console apps on Linux, Windows, and macOS.
</script>
<script data-role="slide" data-markdown type="text/html">
# Cross platform...
* .NET Framework supports websites, services, desktop apps, and more on Windows.
</script>
<script data-role="slide" data-markdown type="text/html">
# Cross platform...
* Xamarin/Mono is a .NET implementation for running apps on all the major mobile operating systems.
</script>
<script data-role="slide" data-markdown type="text/html">
# One consistent API
* .NET Standard is a base set of APIs that are common to all .NET implementations.
</script>
<script data-role="slide" data-markdown type="text/html">
# Libraries
* Package ecosystem built on .NET Standard.
* NuGet package manager
* Over 90,000 packages.
* https://www.nuget.org/
</script>
<script data-role="slide" data-markdown type="text/html">
# Application models
* Web, Mobile, Desktop
* Microservices, Internet of Things
* Cloud (Azure)
* Gaming
* Machine Learning
</script>
<script data-role="slide" data-markdown type="text/html">
# Community
* .NET open source under .NET Foundation
* Independent organization
* Foster open development
* Collaboration .NET ecosystem
</script>
<script data-role="slide" data-markdown type="text/html">
# Tools
* Visual Studio 2019 (full featured IDE)
* Visual Studio Code (free editor, add modules)
</script>
<script data-role="slide" data-markdown type="text/html">
# Install it
* Get the .NET Core SDK
* Code with or without Visual Studio 2019|Code
</script>
<script data-role="slide" data-markdown type="text/html">
# Hello world
```
$ dotnet new console
$ dotnet run
Hello World!
```
</script>
<script data-role="slide" data-markdown type="text/html">
# API documentation
* https://docs.microsoft.com/en-us/dotnet/api/?view=netcore-3.1
* Try to find the manual for the Math.PI constant
</script>
<script data-role="slide" data-markdown type="text/html">
# `C#`
* Lets review some exampe programs
</script>
<script data-role="slide" data-markdown type="text/html">
# Last words
* Questions on that?
</script>
<script data-role="slide" data-markdown type="text/html">
<!-- empty slide by intention -->
</script>
<!-- include essential js-script -->
<script src="js/mithril.min.js"></script>
<script src="js/mithril-slideshow.js"></script>
</html>