Skip to content

Commit 705e8d5

Browse files
author
Bart Koelman
committed
Fixed broken example-generation. Set launchBrowser to true, so it shows sample data on F5.
1 parent 1ed87ae commit 705e8d5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/request-examples/012_PATCH_Book.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ curl -s -f http://localhost:14141/api/books/1 `
44
-d '{
55
\"data\": {
66
\"type\": \"books\",
7-
\"id\": "1",
7+
\"id\": \"1\",
88
\"attributes\": {
99
\"publishYear\": 1820
1010
}

src/Examples/GettingStarted/Properties/launchSettings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
"profiles": {
1111
"IIS Express": {
1212
"commandName": "IISExpress",
13-
"launchBrowser": false,
13+
"launchBrowser": true,
1414
"launchUrl": "api/people",
1515
"environmentVariables": {
1616
"ASPNETCORE_ENVIRONMENT": "Development"
1717
}
1818
},
1919
"Kestrel": {
2020
"commandName": "Project",
21-
"launchBrowser": false,
21+
"launchBrowser": true,
2222
"launchUrl": "api/people",
2323
"applicationUrl": "http://localhost:14141",
2424
"environmentVariables": {

0 commit comments

Comments
 (0)