mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
91 lines
2.3 KiB
JSON
91 lines
2.3 KiB
JSON
/*
|
|
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,
|
|
|
|
/*
|
|
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": {
|
|
"Server+Agent+Desktop": {
|
|
"Projects": {
|
|
"Server\\Server.csproj": {
|
|
"ProfileName": "Server"
|
|
},
|
|
"Agent": {
|
|
"ProfileName": "Agent"
|
|
},
|
|
"Desktop.Win": {
|
|
"ProfileName": "Desktop.Win"
|
|
}
|
|
}
|
|
},
|
|
"Server+Agent": {
|
|
"Projects": {
|
|
"Server\\Server.csproj": {
|
|
"ProfileName": "Server"
|
|
},
|
|
"Agent": {
|
|
"ProfileName": "Agent"
|
|
}
|
|
}
|
|
},
|
|
"Server+Desktop": {
|
|
"Projects": {
|
|
"Server\\Server.csproj": {
|
|
"ProfileName": "Server"
|
|
},
|
|
"Desktop.Win": {
|
|
"ProfileName": "Desktop.Win"
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|