Files
2022/Properties/launchSettings.json
Parnic b707949bf9 Add another build configuration
I've used this multiple times as I've skipped days and needed to go back to work on previous ones, so I figure I might as well commit it.
2022-12-24 15:37:53 -06:00

31 lines
666 B
JSON

{
"profiles": {
"all days": {
"commandName": "Project",
"commandLineArgs": "all"
},
"current day": {
"commandName": "Project"
},
"current day part 1": {
"commandName": "Project",
"commandLineArgs": "-part1"
},
"current day part 2": {
"commandName": "Project",
"commandLineArgs": "-part2"
},
"all days part 1": {
"commandName": "Project",
"commandLineArgs": "all -part1"
},
"all days part 2": {
"commandName": "Project",
"commandLineArgs": "all -part2"
},
"specific day": {
"commandName": "Project",
"commandLineArgs": "16"
}
}
}