Skip to main content

Posts

Showing posts from March, 2010

How to create a Simple Feature for SharePoint

This feature is simply add the existing file to the existing list. Open the visual Studio and add following file to you empty project. When you are writing the xmls in is better use schema that provides intellicence. To add the XML sheme, in the XML file go to properties and after that create following files in you project feature.xml(you cannot change the file name)   <? xml version = " 1.0 " encoding = " utf-8 " ?> < Feature xmlns = " http://schemas.microsoft.com/sharepoint/ "           Id = " 616CE205-AFD6-4823-9519-2A2AEF7C8BB0 "           Scope = " Web "           Title = " Really Simple Feature "           Description = " A feature to place a doc in a library " >    < ElementManifests >      < ElementManifest Location = " elements.xml " />    </ ElementManifests > </ Feature > elements.xml <? xml version =