Skip to content

Commit

Permalink
Create colossus build script.
Browse files Browse the repository at this point in the history
  • Loading branch information
Anduin2017 committed Sep 7, 2018
1 parent 355a568 commit e8b3a0e
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .vscode/launch.json
Expand Up @@ -217,6 +217,37 @@
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
},
{
"name": "Colossus",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "buildColossus",
"program": "${workspaceFolder}/Colossus/bin/Debug/netcoreapp2.1/Aiursoft.Colossus.dll",
"args": [],
"cwd": "${workspaceFolder}/Aiursoft.Colossus",
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart",
"launchBrowser": {
"enabled": true,
"args": "${auto-detect-url}",
"windows": {
"command": "cmd.exe",
"args": "/C start ${auto-detect-url}"
},
"osx": {
"command": "open"
},
"linux": {
"command": "xdg-open"
}
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
}
]
}
10 changes: 10 additions & 0 deletions .vscode/tasks.json
Expand Up @@ -70,6 +70,16 @@
"${workspaceFolder}/Kahla.Home/Kahla.Home.csproj"
],
"problemMatcher": "$msCompile"
},
{
"label": "buildColossus",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Aiursoft.Colossus/Aiursoft.Colossus.csproj"
],
"problemMatcher": "$msCompile"
}
]
}

0 comments on commit e8b3a0e

Please sign in to comment.