Files
runner-images/images/win/post-generation/Dotnet.ps1
Dibir Magomedsaygitov c101287fd8 rework dotnet script
2020-10-01 11:41:42 +03:00

9 lines
371 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)