davidobrien1985 / DscResources

This repository will contain custom PowerShell DSC Resources
MIT License
22 stars 9 forks source link

Create resource class to bootstrap nuget #2

Open davidobrien1985 opened 9 years ago

davidobrien1985 commented 9 years ago

Get-PackageProvider -Name NuGet -ForceBootstrap

dragon788 commented 8 years ago

Since WMF 5 includes the OneGet and PowerShellGet modules and they can bootstrap NuGet via Install-PackageProvider NuGet -MinimumVersion '2.8.5.201' -Force Import-PackageProvider NuGet -MinimumVersion '2.8.5.201' -Force Set-PSRepository -InstallationPolicy Trusted -Name PSGallery does this class need its own method for that, or is this just a wrapper function to do the same?