https://github.com/davidfowl/nugetpowertools
A bunch of powershell modules that make it even easier to work with nuget
https://github.com/davidfowl/nugetpowertools
Last synced: 4 months ago
JSON representation
A bunch of powershell modules that make it even easier to work with nuget
- Host: GitHub
- URL: https://github.com/davidfowl/nugetpowertools
- Owner: davidfowl
- Created: 2011-05-28T08:28:12.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2017-09-18T12:03:33.000Z (almost 8 years ago)
- Last Synced: 2025-03-14T20:58:17.993Z (4 months ago)
- Homepage: http://nuget.org/List/Packages/NuGetPowerTools
- Size: 151 KB
- Stars: 84
- Watchers: 11
- Forks: 12
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# License
Same as NuGet http://nuget.codeplex.com/license# Overview
NuGetPowerTools is a collection of powershell modules that add useful functions for working with nuget inside Visual Studio.# Installing
Using the [package](http://nuget.org/List/Packages/NuGetPowerTools) is good if you want to share these commands with all developers working on a particular project. Just do:Install-Package NuGetPowerTools
## NuGet profile
You can also manually import this module into your profile script, so that the functionality is always there.
Read more [here](http://docs.nuget.org/docs/start-here/using-the-package-manager-console#Setting_up_a_NuGet_Powershell_Profile)# Using the package
## Package Restore and Build
NuGetPowerTools make it super easy to enable package restore and building a package from your project.For restore, just type:
Enable-PackageRestore
This command will add true in your project file(s).For build:
Enable-PackageBuild
This command will add true in your project file(s).## How it works
Both restore and build will download nuget.exe and some custom build targets and will automatically hook your project up to use them.
It will store these in a .nuget folder (remember to check this in).