Skip to content

Commit a799da0

Browse files
committed
(build) using the gittools publisher for vsix
1 parent 9a1f80a commit a799da0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ Task("Pack-Vsix")
294294
var idSuffix = parameters.IsStableRelease() ? "" : "-preview";
295295
var titleSuffix = parameters.IsStableRelease() ? "" : " (Preview)";
296296
var visibility = parameters.IsStableRelease() ? "Public" : "Preview";
297-
var taskId = parameters.IsStableRelease() ? "bfb2f1f8-b852-4db1-ae50-35c79c9161e0" : "761ce478-068a-441a-8f2b-aae0987e7d88";
297+
var taskId = parameters.IsStableRelease() ? "e5983830-3f75-11e5-82ed-81492570a08e" : "25b46667-d5a9-4665-97f7-e23de366ecdf";
298298

299299
ReplaceTextInFile(new FilePath(workDir + "/vss-extension.json"), "$idSuffix$", idSuffix);
300300
ReplaceTextInFile(new FilePath(workDir + "/vss-extension.json"), "$titleSuffix$", titleSuffix);

build/paths.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public class BuildPaths
4545
var gemOutputFilePath = buildArtifactDir.CombineWithFilePath("gitversion-" + version.GemVersion + ".gem");
4646

4747
var vsixSuffix = parameters.IsStableRelease() ? "" : "preview-";
48-
var vsixOutputFilePath = buildArtifactDir.CombineWithFilePath("GitVersion.gitversion-" + vsixSuffix + version.VsixVersion + ".vsix");
48+
var vsixOutputFilePath = buildArtifactDir.CombineWithFilePath("gittools.gitversion-" + vsixSuffix + version.VsixVersion + ".vsix");
4949

5050
// Directories
5151
var buildDirectories = new BuildDirectories(

src/GitVersionTfsTask/vss-extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifestVersion": 1,
33
"id": "gitversion$idSuffix$",
44
"name": "GitVersion$titleSuffix$",
5-
"publisher": "GitVersion",
5+
"publisher": "gittools",
66
"public": true,
77
"author": "GitVersion Contributors",
88
"version": "$version$",

0 commit comments

Comments
 (0)