forked from Cysharp/MagicOnion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MagicOnion.sln.startup.json
48 lines (45 loc) · 1.21 KB
/
MagicOnion.sln.startup.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
This is a configuration file for the SwitchStartupProject Visual Studio Extension
See https://bitbucket.org/thirteen/switchstartupproject/src/tip/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 startup project configurations with one or multiple
startup projects and optional command line arguments.
Example:
"MultiProjectConfigurations": {
"A + B": {
"Projects": {
"MyProjectA": {},
"MyProjectB": {
"CommandLineArguments": "1234"
}
}
},
"D": {
"Projects": {
"MyProjectD": {}
}
}
},
*/
"MultiProjectConfigurations": {
"Server + Client": {
"Projects": {
"Sandbox.ConsoleServer": {},
"Sandbox.ConsoleClient": {}
}
},
"Server + Server2 + Client": {
"Projects": {
"Sandbox.ConsoleServer": {},
"Sandbox.ConsoleServer2": {},
"Sandbox.ConsoleClient": {}
}
}
}
}