diff options
author | James Ottaway <github@james.ottaway.io> | 2014-05-12 10:36:23 +1000 |
---|---|---|
committer | James Ottaway <git@james.ottaway.io> | 2014-05-12 10:37:59 +1000 |
commit | cfc9ce4e6d0320612358445b71a0d5f465c53ff8 (patch) | |
tree | c880d25d93a2fe894481f000f5334538e73899c4 /VisualStudio.gitignore | |
parent | 561bd5d267a4b5b25f3378c711993aa2d771317a (diff) | |
download | gitignore-cfc9ce4e6d0320612358445b71a0d5f465c53ff8.tar.gz gitignore-cfc9ce4e6d0320612358445b71a0d5f465c53ff8.zip |
Ignore locally-built `*.nupkg` files
Building NuGet packages locally with `NuGet.exe pack <name>.nuspec` generates a `<name>.<version>.nupkg` file which should never be versioned.
Diffstat (limited to 'VisualStudio.gitignore')
-rw-r--r-- | VisualStudio.gitignore | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 7414ecfb..1c38a68e 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -129,8 +129,9 @@ publish/ ## passwords *.pubxml -# NuGet Packages Directory +# NuGet Packages packages/* +*.nupkg ## TODO: If the tool you use requires repositories.config ## uncomment the next line #!packages/repositories.config |