Include version/architecture in DOTNET_ROOT

Fixes #29
pull/34/head
Robert Jeppesen 6 years ago
parent a2db70294c
commit a668ade667

@ -73,7 +73,7 @@ class DotnetCoreInstaller {
console.log('Using cached tool');
}
// Need to set this so that .NET Core global tools find the right locations.
core.exportVariable('DOTNET_ROOT', path.join(toolPath, '../..'));
core.exportVariable('DOTNET_ROOT', toolPath);
// Prepend the tools path. instructs the agent to prepend for future tasks
core.addPath(toolPath);
});

@ -59,7 +59,7 @@ export class DotnetCoreInstaller {
}
// Need to set this so that .NET Core global tools find the right locations.
core.exportVariable('DOTNET_ROOT', path.join(toolPath, '../..'));
core.exportVariable('DOTNET_ROOT', toolPath);
// Prepend the tools path. instructs the agent to prepend for future tasks
core.addPath(toolPath);

Loading…
Cancel
Save