Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

editing packages.config by hand [duplicate]

Tags:

.net

packages

i'm a .net/c# noob (long time java/servlet programmer)

i inherited an mvc 3 project and have been working on it for about 2 months. just opened packages.config for the first time and see jquery stuff in it:

<package id="jQuery" version="1.5.1" />
<package id="jQuery.vsdoc" version="1.5.1" />
<package id="jQuery.Validation" version="1.8.0" />
<package id="jQuery.UI.Combined" version="1.8.11" />

my project has never used NuGet for anything. i understand this file is used by NuGet.

if i were to simply edit this file and remove lines from it, would there be any bad side-affects.

like image 587
horace Avatar asked Sep 28 '11 20:09

horace


1 Answers

It is the file used by nuget to track what dependencies were installed.

like image 138
Oded Avatar answered Oct 21 '22 23:10

Oded