Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

not a showstopper but when using nuget in a project, it creates a packages.config file with this shape

<?xml version="1.0" encoding="utf-8"?>
<packages>
   ... your packages
</packages> 

this gives a warning in VS

The 'packages' element is not declared.

The origin of the problem got something to do with the xml declaration I guess.

Also I think that the default definition package shouldn't throw warnings.

Does anyone know what should I change it to so I don't get this warning? (ie even if I can see it only when the file is open, it also shows as a warning constantly with certain CA rules on.)

share|improve this question
I found [this solution][1] for this topic, which I think is better. [1]: stackoverflow.com/questions/2833243/… – Skartknet May 12 at 0:51

3 Answers

up vote 16 down vote accepted

You can always make simple xsd schema for 'packages.config' to get rid of this warning. To do this, create file named "packages.xsd":

<?xml version="1.0" encoding="utf-8" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
      targetNamespace="urn:packages" xmlns="urn:packages">
  <xs:element name="packages">
    <xs:complexType>
      <xs:sequence>
        <xs:element name="package" maxOccurs="unbounded">
          <xs:complexType>
            <xs:attribute name="id" type="xs:string" use="required" />
            <xs:attribute name="version" type="xs:string" use="required" />
            <xs:attribute name="targetFramework" type="xs:string" use="optional" />
          </xs:complexType>
        </xs:element>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
</xs:schema>

Location of this file (two options)

  • In the same folder as 'packages.config' file,
  • If you want to share packages.xsd across multiple projects, move it to the Visual Studio Schemas folder (the path may slightly differ, it's D:\Program Files (x86)\Microsoft Visual Studio 10.0\Xml\Schemas for me).

Then, edit <packages> tag in packages.config file (add xmlns attribute):

<packages xmlns="urn:packages">

Now the warning should disappear (even if packages.config file is open in Visual Studio).

share|improve this answer
1  
Don't you have to modify the second line of the XSL: <xs:schema xmlns:xs="w3.org/2001/XMLSchema"; targetNamespace="urn:packages" xmlns="urn:packages"> – Uri Nov 14 '11 at 16:52
@Uri, good point, I've upgraded the schema. – Lucasus Nov 14 '11 at 17:32
Do you know why Visual Studio is not creating that xsd file? – Anders Lindén Aug 23 '12 at 6:42
1  
u missed targetFramework attribute in xml schema file. I m getting error targetFramework attribute is not defined – harsh Sep 22 '12 at 11:04
@harsh, You're right, schema is now updated, thanks Gerardo for fixing it. – Lucasus May 12 at 11:09

You will see it only when the file is open. When you'll close the file in Visual Studio the warnings goes away

http://nuget.codeplex.com/discussions/261638

share|improve this answer
1  
Ha, ignoring the problem makes it go away :D. But can what you can't see hurt you? – Bizorke Jan 20 '12 at 15:37
1  
right @gregory we should ignore this.. there is other impact of this warning. It is generated by nuget and nuget knows how to use this file very well. – harsh Sep 22 '12 at 11:09

This happens because VS doesn't know the schema of this file. Note that this file is more of an implementation detail, and not something you normally need to open directly. Instead, you can use the NuGet dialog to manage the packages installed in a project.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.