26 lines
662 B
JSON
26 lines
662 B
JSON
{
|
|
"$schema": "http://json.schemastore.org/launchsettings.json",
|
|
"profiles": {
|
|
"Develop": {
|
|
"commandName": "Project",
|
|
"environmentVariables": {
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
},
|
|
"commandLineArgs": "--m Develop"
|
|
},
|
|
"Release-Gate": {
|
|
"commandName": "Project",
|
|
"environmentVariables": {
|
|
"ASPNETCORE_ENVIRONMENT": "Production"
|
|
},
|
|
"commandLineArgs": "--m Release --pid 1"
|
|
},
|
|
"Release-Game": {
|
|
"commandName": "Project",
|
|
"environmentVariables": {
|
|
"ASPNETCORE_ENVIRONMENT": "Production"
|
|
},
|
|
"commandLineArgs": "--m Release --pid 2"
|
|
}
|
|
}
|
|
} |