Does anybody know if manifest.xml (wsp) has an intellisense for Visual Studio? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T21:28:12Zhttp://stackoverflow.com/feeds/question/705475http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/705475/does-anybody-know-if-manifest-xml-wsp-has-an-intellisense-for-visual-studio2Does anybody know if manifest.xml (wsp) has an intellisense for Visual Studio?jaloplo2009-04-01T13:26:47Z2009-04-01T13:36:03Z
<p>Hi,</p>
<p>I've been searching for intellisense in Visual Studio 2005 or Visual Studio 2008 when editing "<em>manifest.xml</em>" file in a SharePoint solution (wsp) with no result. Does anybody know if there is something similar to CAML intellisense but for "<em>manifest.xml</em>" files???</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/705475/does-anybody-know-if-manifest-xml-wsp-has-an-intellisense-for-visual-studio/705496#7054961Answer by David M for Does anybody know if manifest.xml (wsp) has an intellisense for Visual Studio?David M2009-04-01T13:32:07Z2009-04-01T13:32:07Z<p>Intellisense in XML in Visual Studio depends on the presence of an XML schema file in the folder:</p>
<p>C:\Program Files\Microsoft Visual Studio 9.0\Xml\Schemas</p>
<p>(or the equivalent for the version you are using). So if you can find an XML schema for these files, you can enable Intellisense.</p>
<p>The file you need is DeploymentManifest.xsd, described here:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb263776.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb263776.aspx</a></p>
http://stackoverflow.com/questions/705475/does-anybody-know-if-manifest-xml-wsp-has-an-intellisense-for-visual-studio/705507#7055074Answer by Pete Skelly for Does anybody know if manifest.xml (wsp) has an intellisense for Visual Studio?Pete Skelly2009-04-01T13:36:03Z2009-04-01T13:36:03Z<p>You can ensure intellisense by adding schema references to wss.xsd, coredefinitions.xsd, CamlQuery.xsd and camlview.xsd contained in c:\Program Files\Common Files\Microsoft Shared\web server extensions\12\Template\Xml</p>
<p>TO do so, with your manifest file open in VS.NET, go to the Properties window, and in the Schemas property you can click the browse button and load these schemas.</p>
<p>If you search Google (I think Andrew Connell has a sample) there are ways to force this to occur for every xml file as well.</p>