Files
runner-images-sangeeth/images/win/post-generation/Dotnet.ps1
Dibir Magomedsaygitov 29300ce6eb minor change
2020-10-01 12:43:21 +03:00

8 lines
373 B
PowerShell

$latestPath = [System.Environment]::GetEnvironmentVariable('PATH', [System.EnvironmentVariableTarget]::Machine)
$dotnetPath = "$env:USERPROFILE\.dotnet\tools"
if (-not $latestPath.Contains($dotnetPath))
{
$latestPath = "$dotnetPath;$latestPath"
[System.Environment]::SetEnvironmentVariable('PATH', $latestPath, [System.EnvironmentVariableTarget]::Machine)
}