-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
56 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
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": true, | ||
|
||
/* | ||
Dictionary of named configurations with one or multiple startup projects | ||
and optional parameters like command line arguments and working directory. | ||
Example: | ||
|
||
"MultiProjectConfigurations": { | ||
"A + B (Ext)": { | ||
"Projects": { | ||
"MyProjectA": {}, | ||
"MyProjectB": { | ||
"CommandLineArguments": "1234", | ||
"WorkingDirectory": "%USERPROFILE%\\test", | ||
"StartExternalProgram": "c:\\myprogram.exe" | ||
} | ||
} | ||
}, | ||
"A + B": { | ||
"Projects": { | ||
"MyProjectA": {}, | ||
"MyProjectB": { | ||
"CommandLineArguments": "", | ||
"WorkingDirectory": "", | ||
"StartProject": true | ||
} | ||
} | ||
}, | ||
"D (Debug x86)": { | ||
"Projects": { | ||
"MyProjectD": {} | ||
}, | ||
"SolutionConfiguration": "Debug", | ||
"SolutionPlatform": "x86", | ||
}, | ||
"D (Release x64)": { | ||
"Projects": { | ||
"MyProjectD": {} | ||
}, | ||
"SolutionConfiguration": "Release", | ||
"SolutionPlatform": "x64", | ||
} | ||
} | ||
*/ | ||
"MultiProjectConfigurations": {} | ||
} |