Skip to content

Commit 0a20163

Browse files
committed
rename GitVersionTfsTask -> GitVersionVsixTask
1 parent 83754dc commit 0a20163

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

build/pack.cake

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ Task("Clean")
77

88
CleanDirectories("./src/**/bin/" + parameters.Configuration);
99
CleanDirectories("./src/**/obj");
10-
CleanDirectories("./src/GitVersionTfsTask/scripts/**");
10+
CleanDirectories("./src/GitVersionVsixTask/scripts/**");
1111

12-
DeleteFiles("src/GitVersionTfsTask/*.vsix");
12+
DeleteFiles("src/GitVersionVsixTask/*.vsix");
1313
DeleteFiles("src/GitVersionRubyGem/*.gem");
1414

1515
CleanDirectories(parameters.Paths.Directories.ToClean);
@@ -164,7 +164,7 @@ Task("Copy-Files")
164164
PublishILRepackedGitVersionExe(false, parameters.Paths.Directories.ArtifactsBinFullFx, ilMergeDir, cmdlineDir, parameters.Configuration, parameters.FullFxVersion);
165165

166166
// Vsix
167-
var vsixPath = new DirectoryPath("./src/GitVersionTfsTask/GitVersionTask");
167+
var vsixPath = new DirectoryPath("./src/GitVersionVsixTask/GitVersionTask");
168168

169169
var vsixPathFull = vsixPath.Combine("full");
170170
EnsureDirectoryExists(vsixPathFull);
@@ -189,7 +189,7 @@ Task("Pack-Vsix")
189189
.IsDependentOn("Copy-Files")
190190
.Does<BuildParameters>((parameters) =>
191191
{
192-
var workDir = "./src/GitVersionTfsTask";
192+
var workDir = "./src/GitVersionVsixTask";
193193
var idSuffix = parameters.IsStableRelease() ? "" : "-preview";
194194
var titleSuffix = parameters.IsStableRelease() ? "" : " (Preview)";
195195
var visibility = parameters.IsStableRelease() ? "Public" : "Preview";

docs/build-server-support/build-server/azure-devops

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ If you run TFS 2015 RTM or Update 1 or don't want to install the GitVersion exte
2828
2. For TFS 2015 On-Prem configure Basic Authentication in TFS as shown [here](https://github.com/Microsoft/tfs-cli/blob/master/docs/configureBasicAuth.md).
2929
3. Download the GitVersion TFS build task from the latest release on the [GitVersion releases page](https://github.com/GitTools/GitVersion/releases) and unzip.
3030
4. Run `tfx login` as shown [here](https://github.com/Microsoft/tfs-cli/blob/master/README.md#login).
31-
5. From the directory outside of where you unzipped the task, run `tfx build tasks upload --task-path .\GitVersionTfsTask --overwrite` where GitVersionTfsTask is the directory containing the files.
31+
5. From the directory outside of where you unzipped the task, run `tfx build tasks upload --task-path .\GitVersionVsixTask --overwrite` where GitVersionVsixTask is the directory containing the files.
3232
6. It should successfully install.
3333

3434
#### Using the GitVersion custom build step

src/GitVersionVsixTask/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ Versioning when using Git, solved. GitVersion looks at your Git history and work
22

33
It works with most branching strategies but has been designed mainly around GitFlow and GitHubFlow (pull request workflow). The calculated version numbers can then be accessed through variables such as `$(GitVersion.NuGetVersion)` and `$(GitVersion.SemVer)`. It is also very configurable to allow it to work with most release workflows!
44

5-
![Build Task](https://raw.githubusercontent.com/GitTools/GitVersion/master/src/GitVersionTfsTask/images/build-task.png)
6-
![Builds](https://raw.githubusercontent.com/GitTools/GitVersion/master/src/GitVersionTfsTask/images/builds.png)
5+
![Build Task](https://raw.githubusercontent.com/GitTools/GitVersion/master/src/GitVersionVsixTask/images/build-task.png)
6+
![Builds](https://raw.githubusercontent.com/GitTools/GitVersion/master/src/GitVersionVsixTask/images/builds.png)

0 commit comments

Comments
 (0)