1 Star 0 Fork 8

VeniVidiVici / nf-interpreter

forked from 蛋蛋 / nf-interpreter 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
install-nf-hex2dfu.ps1 521 Bytes
一键复制 编辑 原始数据 按行查看 历史
José Simões 提交于 2017-10-12 08:37 . Improvements in AppVeyor (#531)
# This PS installs nanoFramework hex2dfu command line utility
# check if path already exists
$hex2dfuPathExists = Test-Path $env:HEX2DFU_PATH -ErrorAction SilentlyContinue
If($hex2dfuPathExists -eq $False)
{
md $($env:HEX2DFU_PATH)
Write-Host "Downloading hex2dfu..."
$url = "https://github.com/nanoframework/nf-tools/releases/download/v1.0.0/hex2dfu.exe"
$output = "$env:HEX2DFU_PATH\hex2dfu.exe"
# download executable with utility
(New-Object Net.WebClient).DownloadFile($url, $output)
}
C++
1
https://gitee.com/VeniVidiVici/nf-interpreter.git
git@gitee.com:VeniVidiVici/nf-interpreter.git
VeniVidiVici
nf-interpreter
nf-interpreter
master

搜索帮助