Skip to content

Commit

Permalink
Use pwsh for xplat npm script execution
Browse files Browse the repository at this point in the history
  • Loading branch information
mhutch committed Sep 26, 2024
1 parent f8026fe commit fb240c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions msbuild-editor-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
"test": "vscode-test",
"publish-server": "dotnet publish ../MSBuildLanguageServer/MSBuildLanguageServer.csproj --configuration Debug --output ./server",
"copy-vsix-assets": "cp ../LICENSE . && cp ../art/icon-128.png icon.png",
"vsix-pack": "vsce package --baseImagesUrl https://github.com/mhutch/MonoDevelop.MSBuildEditor/raw/HEAD/msbuild-editor-vscode --no-update-package-json --no-git-tag-version --pre-release `nbgv get-version -v NpmPackageVersion`",
"vsix-install": "npm run vsix-pack && code --install-extension msbuild-editor-`nbgv get-version -v NpmPackageVersion`.vsix"
"vsix-pack": "pwsh -c \"vsce package --baseImagesUrl https://github.com/mhutch/MonoDevelop.MSBuildEditor/raw/HEAD/msbuild-editor-vscode --no-update-package-json --no-git-tag-version --pre-release $(nbgv get-version -v NpmPackageVersion)\"",
"vsix-install": "pwsh -c \"npm run vsix-pack && code --install-extension msbuild-editor-$(nbgv get-version -v NpmPackageVersion).vsix\""
},
"dependencies": {
"@vscode/extension-telemetry": "^0.9.0",
Expand Down

0 comments on commit fb240c4

Please sign in to comment.