Skip to content

Commit

Permalink
Fixed broken example-generation. Set launchBrowser to true, so it sho…
Browse files Browse the repository at this point in the history
…ws sample data on F5.
  • Loading branch information
Bart Koelman committed Sep 14, 2021
1 parent 1ed87ae commit 705e8d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/request-examples/012_PATCH_Book.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ curl -s -f http://localhost:14141/api/books/1 `
-d '{
\"data\": {
\"type\": \"books\",
\"id\": "1",
\"id\": \"1\",
\"attributes\": {
\"publishYear\": 1820
}
Expand Down
4 changes: 2 additions & 2 deletions src/Examples/GettingStarted/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": false,
"launchBrowser": true,
"launchUrl": "api/people",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"Kestrel": {
"commandName": "Project",
"launchBrowser": false,
"launchBrowser": true,
"launchUrl": "api/people",
"applicationUrl": "http://localhost:14141",
"environmentVariables": {
Expand Down

0 comments on commit 705e8d5

Please sign in to comment.