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 263617b commit a537be5Copy full SHA for a537be5
Tasks/Common/nuget-task-common/NuGetConfigHelper.ts
@@ -24,7 +24,7 @@ export class NuGetConfigHelper {
24
private _authInfo: auth.NuGetAuthInfo;
25
private _environmentSettings: ngToolRunner.NuGetEnvironmentSettings;
26
27
- private tempNugetConfigDir = path.join(tl.getVariable('agent.buildDirectory'), 'Nuget');
+ private tempNugetConfigDir = path.join(tl.getVariable('system.defaultWorkingDirectory') || process.cwd(), 'Nuget');
28
private tempNugetConfigFileName = 'tempNuGet_' + tl.getVariable('build.buildId') + '.config';
29
public tempNugetConfigPath = path.join(this.tempNugetConfigDir, this.tempNugetConfigFileName);
30
0 commit comments