I know that NuGet packages (at least these days) should not be included in version control. How can I exclude files added to my project?
For example: I have a .NET MVC project that uses the NuGet package to bootstrap. It adds some CSS, JS, and font files to content, scripts, and fonts, respectively. Should these files be included in my original control? If not, what would be the best way to ignore them? (I am using GIT for this particular project.)
source
share