You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: powerapps-docs/developer/data-platform/webapi/quick-start-blazor-server-app.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -164,7 +164,7 @@ To enable calls to Dataverse you must edit three files in the application:
164
164
165
165
- appsettings.json
166
166
- Program.cs
167
-
- FetchData.razor
167
+
- Pages/FetchData.razor
168
168
169
169
### appsettings.json
170
170
@@ -187,7 +187,7 @@ Add the following below `"AllowedHosts": "*"` where `<your org>` represents the
187
187
188
188
### Program.cs
189
189
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);`
191
191
192
192
```csharp
193
193
publicstaticvoidMain(string[] args)
@@ -212,11 +212,11 @@ Add the following below `"AllowedHosts": "*"` where `<your org>` represents the
0 commit comments