Skip to content

Commit 5425b39

Browse files
Format
1 parent 620d5e8 commit 5425b39

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

docs/aca/03-aca-dapr-integration/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,13 +128,15 @@ You are now ready to run the applications locally using the Dapr sidecar in a se
128128
- Install Dapr SDK for .NET Core in the Frontend Web APP, so we can use the service discovery and service invocation offered by Dapr Sidecar. To do so, add below nuget package to the project.
129129

130130
=== ".NET 8"
131+
131132
=== "TasksTracker.WebPortal.Frontend.Ui.csproj"
132133

133134
```xml hl_lines="9-11"
134135
--8<-- "docs/aca/03-aca-dapr-integration/Frontend.Ui-dotnet8.csproj"
135136
```
136137

137138
=== ".NET 9"
139+
138140
=== "TasksTracker.WebPortal.Frontend.Ui.csproj"
139141

140142
```xml hl_lines="9-11"
@@ -144,13 +146,15 @@ You are now ready to run the applications locally using the Dapr sidecar in a se
144146
- Next, open the file `Programs.cs` of the Frontend Web App and register the DaprClient as the highlighted below.
145147

146148
=== ".NET 8"
149+
147150
=== "Program.cs"
148151

149152
```csharp hl_lines="6"
150153
--8<-- "docs/aca/03-aca-dapr-integration/Program-dotnet8.cs"
151154
```
152155

153156
=== ".NET 9"
157+
154158
=== "Program.cs"
155159

156160
```csharp hl_lines="6"

docs/aca/04-aca-dapr-stateapi/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,15 @@ Whereas in the previous section we demonstrated using Dapr State Store without c
122122
Similar to what we have done in the Frontend Web App, we need to use Dapr Client SDK to manage the state store. Update the below file with the added Dapr package reference:
123123

124124
=== ".NET 8"
125+
125126
=== "TasksTracker.TasksManager.Backend.Api.csproj"
126127

127128
```xml hl_lines="11"
128129
--8<-- "docs/aca/04-aca-dapr-stateapi/Backend.Api-dotnet8.csproj"
129130
```
130131

131132
=== ".NET 9"
133+
132134
=== "TasksTracker.TasksManager.Backend.Api.csproj"
133135

134136
```xml hl_lines="10"
@@ -163,13 +165,15 @@ Now we need to register the new service named `TasksStoreManager` and `DaprClien
163165
Do not forget to comment out the registration of the `FakeTasksManager` service as we don't want to store tasks in memory anymore.
164166

165167
=== ".NET 8"
168+
166169
=== "Program.cs"
167170

168171
```csharp hl_lines="7-9"
169172
--8<-- "docs/aca/04-aca-dapr-stateapi/Program-dotnet8.cs"
170173
```
171174

172175
=== ".NET 9"
176+
173177
=== "Program.cs"
174178

175179
```csharp hl_lines="7-9"

0 commit comments

Comments
 (0)