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 39f0917 commit 70264beCopy full SHA for 70264be
dist/tools/libs/gitversion.mjs
@@ -82,8 +82,10 @@ class GitVersionTool extends DotnetTool {
82
}
83
this.buildAgent.setOutput(name, value);
84
this.buildAgent.setOutput(`GitVersion_${property}`, value);
85
+ this.buildAgent.setOutput(`GitVersion.${property}`, value);
86
this.buildAgent.setVariable(name, value);
87
this.buildAgent.setVariable(`GitVersion_${property}`, value);
88
+ this.buildAgent.setVariable(`GitVersion.${property}`, value);
89
} catch (_error) {
90
this.buildAgent.error(`Unable to set output/variable for ${property}`);
91
0 commit comments