-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reduced JSON configuration section nesting. (#68)
- Loading branch information
Showing
31 changed files
with
133 additions
and
251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 0 additions & 29 deletions
29
src/Fluxera.Extensions.Hosting.Modules.Configuration/ConfigurationSectionUtil.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 41 additions & 45 deletions
86
...s/Fluxera.Extensions.Hosting.Modules.AspNetCore.Authentication.UnitTests/appsettings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 6 additions & 10 deletions
16
tests/Fluxera.Extensions.Hosting.Modules.AspNetCore.Cors.UnitTests/appsettings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
{ | ||
"Hosting": { | ||
"Modules": { | ||
"AspNetCore": { | ||
"Cors": { | ||
"Origins": [ | ||
"http://localhost:5000", | ||
"https://localhost:5001" | ||
] | ||
} | ||
} | ||
"AspNetCore": { | ||
"Cors": { | ||
"Origins": [ | ||
"http://localhost:5000", | ||
"https://localhost:5001" | ||
] | ||
} | ||
} | ||
} |
28 changes: 12 additions & 16 deletions
28
tests/Fluxera.Extensions.Hosting.Modules.AspNetCore.HttpApi.UnitTests/appsettings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 1 addition & 6 deletions
7
tests/Fluxera.Extensions.Hosting.Modules.AspNetCore.Principal.UnitTests/appsettings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
{ | ||
"Hosting": { | ||
"Modules": { | ||
"HttpPrincipal": { | ||
} | ||
} | ||
} | ||
"HttpPrincipal": {} | ||
} |
8 changes: 2 additions & 6 deletions
8
tests/Fluxera.Extensions.Hosting.Modules.AspNetCore.UnitTests/appsettings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
{ | ||
"Hosting": { | ||
"Modules": { | ||
"AspNetCore": { | ||
"BaseUrl": "https://localhost:5001" | ||
} | ||
} | ||
"AspNetCore": { | ||
"BaseUrl": "https://localhost:5001" | ||
} | ||
} |
7 changes: 1 addition & 6 deletions
7
tests/Fluxera.Extensions.Hosting.Modules.AutoMapper.UnitTests/appsettings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
{ | ||
"Hosting": { | ||
"Modules": { | ||
"AutoMapper": { | ||
} | ||
} | ||
} | ||
"AutoMapper": {} | ||
} |
32 changes: 14 additions & 18 deletions
32
tests/Fluxera.Extensions.Hosting.Modules.Caching.Redis.UnitTests/appsettings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 5 additions & 9 deletions
14
tests/Fluxera.Extensions.Hosting.Modules.Caching.UnitTests/appsettings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
{ | ||
"Hosting": { | ||
"Modules": { | ||
"Caching": { | ||
"DistributedCache": { | ||
"AbsoluteExpiration": "12:00:00", | ||
"AbsoluteExpirationRelativeToNow": "00:30:00", | ||
"SlidingExpiration": "00:15:00" | ||
} | ||
} | ||
"Caching": { | ||
"DistributedCache": { | ||
"AbsoluteExpiration": "12:00:00", | ||
"AbsoluteExpirationRelativeToNow": "00:30:00", | ||
"SlidingExpiration": "00:15:00" | ||
} | ||
} | ||
} |
Oops, something went wrong.