We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 481204c commit 909576aCopy full SHA for 909576a
Build/init.ps1
@@ -18,6 +18,11 @@ $VsWherePath = "${env:PROGRAMFILES(X86)}\Microsoft Visual Studio\Installer\vswhe
18
$VsPath = $(&$VsWherePath -latest -property installationPath)
19
$msbuildPath = Join-Path -Path $VsPath -ChildPath "\MSBuild"
20
21
+# Install dotnet CLI tools declared in /.config/dotnet-tools.json
22
+pushd $root
23
+dotnet tool install
24
+popd
25
+
26
# Install .NET nanoFramework build components
27
if (!(Test-Path "$msbuildPath/nanoFramework")) {
28
Write-Host "Installing .NET nanoFramework VS extension..."
0 commit comments