Skip to content

Commit c4dedb0

Browse files
committed
Chore: Add --root parameter to version bump commands in launch settings
1 parent 93d0a7a commit c4dedb0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Tools.CodeOfChaos.CliArgsParser/Properties/launchSettings.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,27 @@
33
"Version Bump : Major": {
44
"_readme": "will update the 'patch' section of the semantic version (x.0.0)",
55
"commandName": "Project",
6-
"commandLineArgs": "git-version-bump --section=\"major\" --projects=\"%PROJECTS%\" --push"
6+
"commandLineArgs": "git-version-bump --section=\"major\" --projects=\"%PROJECTS%\" --push --root=\"..\\..\\\""
77
},
88
"Version Bump : Minor": {
99
"_readme": "will update the 'patch' section of the semantic version (0.x.0)",
1010
"commandName": "Project",
11-
"commandLineArgs": "git-version-bump --section=\"minor\" --projects=\"%PROJECTS%\" --push"
11+
"commandLineArgs": "git-version-bump --section=\"minor\" --projects=\"%PROJECTS%\" --push --root=\"..\\..\\\""
1212
},
1313
"Version Bump : Patch": {
1414
"_readme": "will update the 'patch' section of the semantic version (0.0.x)",
1515
"commandName": "Project",
16-
"commandLineArgs": "git-version-bump --section=\"patch\" --projects=\"%PROJECTS%\" --push"
16+
"commandLineArgs": "git-version-bump --section=\"patch\" --projects=\"%PROJECTS%\" --push --root=\"..\\..\\\""
1717
},
1818
"Version Bump : Preview": {
1919
"_readme": "will update the 'preview' section of the semantic version (0.0.0-preview.x)",
2020
"commandName": "Project",
21-
"commandLineArgs": "git-version-bump --section=\"preview\" --projects=\"%PROJECTS%\" --push"
21+
"commandLineArgs": "git-version-bump --section=\"preview\" --projects=\"%PROJECTS%\" --push --root=\"..\\..\\\""
2222
},
2323
"Version Bump : Manual": {
2424
"_readme": "useful for setting a preview for an upcoming version. Will ask for a prompt of the new version string",
2525
"commandName": "Project",
26-
"commandLineArgs": "git-version-bump --section=\"manual\" --projects=\"%PROJECTS%\" --push"
26+
"commandLineArgs": "git-version-bump --section=\"manual\" --projects=\"%PROJECTS%\" --push --root=\"..\\..\\\""
2727
},
2828
"Download Icon": {
2929
"_readme": "downloads a png to a specific location to then be used by nuget packages as a built in icon",

0 commit comments

Comments
 (0)