Skip to content

Commit

Permalink
Fix JSON parsing error
Browse files Browse the repository at this point in the history
While this is ignored by Visual Studio, JetBrains Ryder is less forgiving and fails to detect the Kestrel configuration in the affected projects. This results in a silent fallback to a default profile that uses 5000-5001 port numbers.
  • Loading branch information
Rahtgaz committed Apr 20, 2023
1 parent a997f56 commit 11ad3af
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"anonymousAuthentication": true
},
"profiles": {
"ClinicManagement.Blazor": {
Expand Down
2 changes: 1 addition & 1 deletion FrontDesk/src/FrontDesk.Api/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"anonymousAuthentication": true
},
"profiles": {
"FrontDesk.Api": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"anonymousAuthentication": true
},
"profiles": {
"FrontDesk.Blazor": {
Expand Down

0 comments on commit 11ad3af

Please sign in to comment.