diff --git a/.tools/requirements/requirements_ci.txt b/.tools/requirements/requirements_ci.txt index 1a057b74..5775b0fa 100644 --- a/.tools/requirements/requirements_ci.txt +++ b/.tools/requirements/requirements_ci.txt @@ -3,7 +3,7 @@ # * -------------------------------------------------------------------------------- * # # * Changes below should persist in significant template updates. -boilercore@git+https://github.com/blakeNaccarato/boilercore@2782223fb5ac0e296e075b3a9ef35c7c76b1eddc +boilercore@git+https://github.com/blakeNaccarato/boilercore@edd698f3ebf128fee99bbf9e6b91f8b64a964a67 # * -------------------------------------------------------------------------------- * # # * Changes below may be lost in significant template updates. diff --git a/.tools/scripts/Update-Boilercore.ps1 b/.tools/scripts/Update-Boilercore.ps1 new file mode 100644 index 00000000..5dbe21e3 --- /dev/null +++ b/.tools/scripts/Update-Boilercore.ps1 @@ -0,0 +1,10 @@ +<#.SYNOPSIS +Update boilercore to the latest commit pin. +#> + +git submodule update --init --remote --merge boilercore +git add --all +git commit -m "Update boilercore pinned commit" +git submodule deinit --force boilercore +git add --all +git commit --amend --no-edit diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 91a4f4e9..5e9006b2 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -55,10 +55,18 @@ // * Changes below should persist in significant template updates. { - "label": "proj: local pyrightconfig.json", - "type": "process", - "command": "pwsh", - "args": ["-Command", "python .tools/scripts/local_pyrightconfig.py"], + "label": "proj: update boilercore", + "type": "shell", + "options": { "shell": { "executable": "pwsh" } }, + "command": ".tools/scripts/Update-Boilercore.ps1", + "icon": { "id": "graph" }, + "problemMatcher": [] + }, + { + "label": "proj: local pyrightconfig", + "type": "shell", + "options": { "shell": { "executable": "pwsh", "args": ["-Command"] } }, + "command": "python .tools/scripts/local_pyrightconfig.py", "icon": { "id": "graph" }, "problemMatcher": [] }, diff --git a/boilercore b/boilercore index 2782223f..edd698f3 160000 --- a/boilercore +++ b/boilercore @@ -1 +1 @@ -Subproject commit 2782223fb5ac0e296e075b3a9ef35c7c76b1eddc +Subproject commit edd698f3ebf128fee99bbf9e6b91f8b64a964a67