mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-01-08 07:00:17 +00:00
10 lines
240 B
PowerShell
10 lines
240 B
PowerShell
#Requires -Version 3
|
|
<#
|
|
.SYNOPSIS
|
|
Downloads the referenced NuGet packages from internet.
|
|
#>
|
|
|
|
$nuget = Join-Path $PSScriptRoot 'Tools\nuget.exe'
|
|
$solutionFile = Join-Path $PSScriptRoot '..\Src\DSInternals.sln'
|
|
|
|
& $nuget restore $solutionFile |