We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c8f06b commit 2487a49Copy full SHA for 2487a49
azure-pipelines.yml
@@ -1,3 +1,5 @@
1
+variables: { DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 'true', DOTNET_CLI_TELEMETRY_OPTOUT: 'true' }
2
+
3
stages:
4
- stage: Build
5
jobs:
build/utils/paths.cake
@@ -46,7 +46,7 @@ public class BuildPaths
46
47
var vsixSuffix = parameters.IsStableRelease() ? "" : "preview-";
48
var vsixOutputFilePath = buildArtifactDir.CombineWithFilePath("gittools.gitversion-" + vsixSuffix + version.VsixVersion + ".vsix");
49
- if (vsixOutputFilePath == null) {
+ if (context.FileExists(vsixOutputFilePath)) {
50
vsixOutputFilePath = context.GetFiles(buildArtifactDir + "/*.vsix").First();
51
}
52
0 commit comments