Skip to content

Commit b22023e

Browse files
committed
update slides
1 parent 44f904f commit b22023e

File tree

4 files changed

+47
-2
lines changed

4 files changed

+47
-2
lines changed

slides/Slides.md

Lines changed: 47 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ footer: 'https://chris-ayers.com'
2626

2727
---
2828

29+
# Session Feedback
30+
31+
![bg right fit](./img/session-feedback.png)
32+
33+
---
34+
2935
![bg right:40% auto](./img/dotnet-logo.png)
3036

3137
# Agenda
@@ -111,12 +117,45 @@ footer: 'https://chris-ayers.com'
111117
<div class="columns">
112118
<div>
113119

114-
![height:400px](./img/net-framework-config.png)
120+
```xml
121+
<appSettings>
122+
<add key="webpages:Version" value="3.0.0.0" />
123+
<add key="webpages:Enabled" value="false" />
124+
<add key="ClientValidationEnabled" value="true" />
125+
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
126+
<add key="Greeting" value="Hello, Everyone!" />
127+
<add key="CurrentMajorDotNetVersion" value="6" />
128+
</appSettings>
129+
<system.web>
130+
<compilation debug="true" targetFramework="4.7.2" />
131+
<httpRuntime targetFramework="4.7.2" />
132+
</system.web>
133+
```
115134

116135
</div>
117136
<div>
118137

119-
![height:400px](./img/net-framework-static.png)
138+
```xml
139+
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
140+
<connectionStrings>
141+
<add name="MyDB"
142+
connectionString="Data Source=ReleaseSQLServer..."
143+
xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
144+
</connectionStrings>
145+
146+
```
147+
148+
149+
```cs
150+
private string greeting = "";
151+
private int majorDotNetVersion = 0;
152+
public HomeController()
153+
{
154+
greeting = ConfigurationManager.AppSettings["Greeting"];
155+
string ver = ConfigurationManager.AppSettings["CurrentMajorDotNetVersion"]
156+
majorDotNetVersion = Int32.Parse(ver);
157+
}
158+
```
120159

121160
</div>
122161
</div>
@@ -366,6 +405,12 @@ public class FileOptions
366405

367406
---
368407

408+
# Session Feedback
409+
410+
![bg right fit](./img/session-feedback.png)
411+
412+
---
413+
369414
<div class="columns">
370415
<div>
371416

slides/img/net-framework-config.png

-241 KB
Binary file not shown.

slides/img/net-framework-static.png

-47.6 KB
Binary file not shown.

slides/img/session-feedback.png

48.8 KB
Loading

0 commit comments

Comments
 (0)