-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use a central configuration file across all projects (#708)
* chore: Add common appsettings.override.json (except AdminAPI) * chore: Reference common appsettings.override.json from programs * chore: Add questions for AdminApi appsettings.override.json * chore: Finalize common appsettings.override.json * fix: Use previous path for override json * chore: Remove docker build summary * chore: EventHandlerService: Remove own override file, change working directory, add build event to copy central file * Fix: Only let copy command run in debug configuration * chore: Re-add docker build summary, use own PR for the removal * chore: Use MSBuild property for copy checking * chore: Make appsettings.override file optional again * chore: Remove specific override files * chore: Remove custom property from Dockerfile * chore: Set working directory for local builds * chore: Include common override file into project (debug only) * chore: Remove unnecessary whitespace * chore: Move Content statements into own ItemGroups * chore: use TargetFramework property for working directory * chore: Add instanceUrl to common appsettings override * chore: Remove separate appsettings override files * chore: Rename InstanceUrl to DidDomainName * chore: Remove unnecessary comment --------- Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
- Loading branch information
1 parent
f9c61a3
commit d7a15aa
Showing
25 changed files
with
305 additions
and
679 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/launchsettings.json", | ||
"profiles": { | ||
"Default": { | ||
"commandName": "Project", | ||
"environmentVariables": { | ||
"ASPNETCORE_ENVIRONMENT": "Local", | ||
"ASPNETCORE_HOSTINGSTARTUPASSEMBLIES": "Microsoft.AspNetCore.SpaProxy", | ||
"ASPNETCORE_URLS": "http://*:8082" | ||
} | ||
} | ||
"$schema": "http://json.schemastore.org/launchsettings.json", | ||
"profiles": { | ||
"Default": { | ||
"commandName": "Project", | ||
"environmentVariables": { | ||
"ASPNETCORE_ENVIRONMENT": "Local", | ||
"ASPNETCORE_HOSTINGSTARTUPASSEMBLIES": "Microsoft.AspNetCore.SpaProxy", | ||
"ASPNETCORE_URLS": "http://*:8082" | ||
}, | ||
"workingDirectory": "bin/Debug/$(TargetFramework)" | ||
} | ||
} | ||
} |
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 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 was deleted.
Oops, something went wrong.
Oops, something went wrong.