Files
Fishing2Server/Main/Properties/launchSettings.json
2025-11-11 17:43:11 +08:00

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"
}
}
}