Skip to content

Commit 7598f6a

Browse files
committed
Presentation updates from a partice run
1 parent f114c76 commit 7598f6a

File tree

6 files changed

+38
-69
lines changed

6 files changed

+38
-69
lines changed

update-conference-prague-2024/demo-code-feedback-system/build/build/Build.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
77
<LangVersion>latest</LangVersion>
88
<RunWorkingDirectory>$(MSBuildProjectDirectory)</RunWorkingDirectory>
9-
<EnableNETAnalyzers>true</EnableNETAnalyzers><EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild></PropertyGroup>
9+
<EnableNETAnalyzers>true</EnableNETAnalyzers>
10+
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
11+
</PropertyGroup>
12+
1013
<ItemGroup>
1114
<PackageReference Include="Cake.Frosting" Version="4.0.0" />
12-
<PackageReference Include="Cake.GitHub" Version="1.0.0" />
13-
<PackageReference Include="Cake.Npm" Version="4.0.0" />
1415
</ItemGroup>
1516
</Project>

update-conference-prague-2024/demo-code-feedback-system/build/build/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ private void BuildDotnetApp(BuildContext context, string pathToProj)
9292

9393
context.DotNetBuild(pathToProj, new DotNetBuildSettings
9494
{
95-
NoRestore = false,
95+
NoRestore = true,
9696
Configuration = context.BuildConfiguration
9797
});
9898
}

update-conference-prague-2024/demo-code-feedback-system/infra/Program.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
using Pulumi;
2-
using Pulumi.AzureNative.Resources;
32

4-
using PulumiInfra;
53
using PulumiInfra.Builders;
64
using PulumiInfra.Config;
75

update-conference-prague-2024/demo-code-feedback-system/src/UiTests/.runsettings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<RunSettings>
33

44
<TestRunParameters>
5-
<Parameter name="baseUrl" value="https://sitestorage7a5bcbd5.z20.web.core.windows.net" />
5+
<Parameter name="baseUrl" value="http://localhost:1234" />
66
</TestRunParameters>
77

88
<!-- Playwright -->

update-conference-prague-2024/presentation.html

Lines changed: 30 additions & 48 deletions
Large diffs are not rendered by default.

update-conference-prague-2024/presentation.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -80,17 +80,6 @@ with AL Rodriguez
8080

8181
---
8282

83-
# C# for the "Entire Stack"
84-
85-
- Frontend / Backend
86-
- Build
87-
- Deploy
88-
- Automated Tests
89-
- Doing all development in the same set of tools
90-
- The Best Tools - C# FTW!
91-
92-
---
93-
9483
# Why Entire Stack C#?
9584

9685
- Tools Familiarity
@@ -122,7 +111,7 @@ with AL Rodriguez
122111

123112
---
124113

125-
# Run Code from YAML
114+
# Run C# from YAML
126115

127116
- Call external CLI tool from YAML
128117
- AKA `dotnet run ...`
@@ -134,7 +123,7 @@ with AL Rodriguez
134123
135124
---
136125
137-
# SDKs for CI/CD Apps
126+
# C# SDKs for CI/CD Apps
138127
139128
- Cake
140129
- AKA C# Make
@@ -210,7 +199,6 @@ with AL Rodriguez
210199
- GitHub Action - Deploy
211200
- Cake
212201
- Pulumi
213-
- GitHub Action
214202
- Selenium UI Tests
215203
216204
---

0 commit comments

Comments
 (0)