View workbench-vscode.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A VS Code workspace workbench implementation. | |
source ~/bin/workbench/workbench.sh | |
cp ~/bin/workbench/workbench.code-workspace.json workbench.code-workspace | |
code . |
View cicd.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pull | |
git pull origin main | |
#clean | |
dotnet clean | |
find . -iname "bin" -print0 | xargs -0 rm -rfv | |
find . -iname "obj" -print0 | xargs -0 rm -rfv | |
#build | |
dotnet build -c debug | |
#test | |
dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=lcov /p:CoverletOutput=lcov.info |