git checkout main
git remote set-head origin -aSource: https://stackoverflow.com/questions/8839958/how-does-origin-head-get-set
| [gui] | |
| encoding = utf-8 | |
| [core] | |
| editor = \"\\Microsoft VS Code\\bin\\code\" --wait | |
| repositoryformatversion = 0 | |
| filemode = false | |
| bare = false | |
| logallrefupdates = true | |
| symlinks = false | |
| ignorecase = true |
| # https://gist.githubusercontent.com/disouzam/974a174401e97e170e9396ec29c60695/raw/ec05f73af4ce97ffa9b9dc6f03b36f79260ccffc/.editorconfig | |
| # To learn more about .editorconfig see https://aka.ms/editorconfigdocs | |
| ############################### | |
| # Core EditorConfig Options # | |
| ############################### | |
| # All files | |
| [*] | |
| indent_style = space |
| { | |
| "configuration": "release", | |
| "{projectName}.branchCoverage.threshold": 100, | |
| "debug.terminal.clearBeforeReusing": true, | |
| "terminal.integrated.automationProfile.windows": { | |
| "path": "C:\\Windows\\System32\\cmd.exe" | |
| }, | |
| "files.exclude": { | |
| "**/bin": true, | |
| "**/obj": true, |
| @echo off | |
| @echo ====================================================== | |
| @echo {mainProjectName} - Remove bin and obj folders | |
| @echo ====================================================== | |
| @echo off | |
| @echo. | |
| @echo. | |
| cd ..\ | |
| md log |
| #!/bin/sh | |
| BLUE='\033[0;34m' | |
| RED='\033[0;31m' | |
| NOCOLOR='\033[0m' | |
| # Check if the version of pre-commit hook was updated in version control | |
| # since it is not possible to version control the actual pre-commit script | |
| original_pre_commit_hook=".git/hooks/pre-commit" | |
| pre_commit_hook_in_version_control=".git-hooks-for-reuse/pre-commit" |
| { | |
| "stryker-config": { | |
| "additional-timeout": 20000, | |
| "baseline": {}, | |
| "concurrency": 4, | |
| "coverage-analysis": "perTest", | |
| "disable-bail": false, | |
| "disable-mix-mutants": false, | |
| "ignore-methods": [], | |
| "ignore-mutations": [], |
| @REM In order to execute sonar coverage, you'll need to have sonarqube community downloaded and running local on your machine | |
| @REM and sonarscanner installed as well and placed its /bin folder as a PATH ENVIRONMENT VARIABLE. | |
| @REM Additionaly, you need to provide a Project TOKEN and set its value on LOGIN parameter (line 7). | |
| set project="PLACE PROJECT NAME HERE" | |
| set login="PLACE YOUR TOKEN HERE" | |
| set host=http://localhost:9000 | |
| aaron-bond.better-comments | |
| adpyke.codesnap | |
| alefragnani.bookmarks | |
| anseki.vscode-color | |
| anweber.httpbook-monacorenderer | |
| azurite.azurite | |
| bencoleman.armview | |
| bierner.markdown-mermaid | |
| bierner.markdown-preview-github-styles | |
| charliermarsh.ruff |
git checkout main
git remote set-head origin -aSource: https://stackoverflow.com/questions/8839958/how-does-origin-head-get-set
| // Reference: | |
| // https://stackoverflow.com/questions/3903222/measure-execution-time-in-c-sharp | |
| // Answer by https://stackoverflow.com/users/435383/katbyte | |
| using System; | |
| using System.Diagnostics; | |
| using System.Threading; | |
| namespace Diagnostic | |
| { |