Skip to content

Commit 909576a

Browse files
committed
Restore dotnet tools in build script
1 parent 481204c commit 909576a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Build/init.ps1

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ $VsWherePath = "${env:PROGRAMFILES(X86)}\Microsoft Visual Studio\Installer\vswhe
1818
$VsPath = $(&$VsWherePath -latest -property installationPath)
1919
$msbuildPath = Join-Path -Path $VsPath -ChildPath "\MSBuild"
2020

21+
# Install dotnet CLI tools declared in /.config/dotnet-tools.json
22+
pushd $root
23+
dotnet tool install
24+
popd
25+
2126
# Install .NET nanoFramework build components
2227
if (!(Test-Path "$msbuildPath/nanoFramework")) {
2328
Write-Host "Installing .NET nanoFramework VS extension..."

0 commit comments

Comments
 (0)