Skip to content

Commit 19c4c31

Browse files
committed
fit-n-finish
1 parent 600fe70 commit 19c4c31

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

powerapps-docs/developer/data-platform/webapi/quick-start-blazor-server-app.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ To enable calls to Dataverse you must edit three files in the application:
164164

165165
- appsettings.json
166166
- Program.cs
167-
- FetchData.razor
167+
- Pages/FetchData.razor
168168

169169
### appsettings.json
170170

@@ -187,7 +187,7 @@ Add the following below `"AllowedHosts": "*"` where `<your org>` represents the
187187
188188
### Program.cs
189189

190-
1. To access the value of the Web API base URI in the settings, add this line in the `Main` method below <br />`var builder = WebApplication.CreateBuilder(args);`
190+
1. To access the value of the Web API base URI in the settings, add the line below commented with `// Get BaseUri from appsettings.json` in the `Main` method below <br />`var builder = WebApplication.CreateBuilder(args);`
191191

192192
```csharp
193193
public static void Main(string[] args)
@@ -212,11 +212,11 @@ Add the following below `"AllowedHosts": "*"` where `<your org>` represents the
212212
- [AddInMemoryTokenCaches Method](xref:Microsoft.Identity.Web.MicrosoftIdentityAppCallsWebApiAuthenticationBuilder.AddInMemoryTokenCaches%2A) Enables caching the token issued for requests.
213213

214214

215-
### FetchData.razor
215+
### Pages/FetchData.razor
216216

217-
The default `FetchData.razor` component retrieves some weather forecast data. We are going to replace this completely.
217+
The default `Pages/FetchData.razor` component retrieves some weather forecast data. We are going to replace this completely.
218218

219-
Copy the following code and replace all the code in `FetchData.razor`:
219+
Copy the following code and replace all the code in `Pages/FetchData.razor`:
220220

221221
```razor
222222
@page "/fetchdata"

0 commit comments

Comments
 (0)