-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
JK's improvements to F5 experience (#1128)
* Changed default startup project from Domain to WebAPI * AdminUI uses Kestrel instead of IIS by default (consistent with Docker) * Updated gitignore to ignore generate .env file * Added multi-startup config for VS extensions * Simplified global.json so that we don't need to update it every couple of weeks * Fixed a few parts in the compile instructions * global.json - set workloadVersion to 8.0.404 * - revert global.json changes - update F5 experience on why versions must be 8.0.402 * - added global-ci.json for github workflows - add rollForward to global.json - update documentation --------- Co-authored-by: vladk <[email protected]>
- Loading branch information
1 parent
8bdb688
commit f8a5610
Showing
13 changed files
with
89 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"sdk": { | ||
"version": "8.0.404", | ||
"rollForward": "minor" | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
This is a configuration file for the SwitchStartupProject Visual Studio Extension | ||
See https://heptapod.host/thirteen/switchstartupproject/blob/branch/current/Configuration.md | ||
*/ | ||
{ | ||
/* Configuration File Version */ | ||
"Version": 3, | ||
|
||
/* Create an item in the dropdown list for each project in the solution? */ | ||
"ListAllProjects": false, | ||
|
||
"MultiProjectConfigurations": { | ||
"Run All": { | ||
"Projects": { | ||
"WebAPI": {}, | ||
"AdminUI": {}, | ||
"MobileUI": {} | ||
} | ||
}, | ||
"AdminUI + WebAPI": { | ||
"Projects": { | ||
"WebAPI": {}, | ||
"AdminUI": {} | ||
} | ||
}, | ||
"MobileUI": { | ||
"Projects": { | ||
"MobileUI": {} | ||
} | ||
}, | ||
"AdminUI": { | ||
"Projects": { | ||
"AdminUI": {} | ||
} | ||
}, | ||
"WebAPI": { | ||
"Projects": { | ||
"WebAPI": {} | ||
} | ||
} | ||
} | ||
} |
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,7 +1,6 @@ | ||
{ | ||
"sdk": { | ||
"version": "8.0.402", | ||
"workloadVersion": "8.0.402", | ||
"rollForward": "disable" | ||
"rollForward": "minor" | ||
} | ||
} | ||
} |
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