Files
runner-images/images/win/post-generation/Dotnet.ps1
T

8 lines
373 B
PowerShell
Raw Normal View History

2020-09-29 18:13:37 +03:00
$latestPath = [System.Environment]::GetEnvironmentVariable('PATH', [System.EnvironmentVariableTarget]::Machine)
$dotnetPath = "$env:USERPROFILE\.dotnet\tools"
if (-not $latestPath.Contains($dotnetPath))
{
$latestPath = "$dotnetPath;$latestPath"
2020-10-01 12:43:21 +03:00
[System.Environment]::SetEnvironmentVariable('PATH', $latestPath, [System.EnvironmentVariableTarget]::Machine)
}