I have made a Data Access Guidance Packege, whose main xml file is like this...
<?xml version="1.0" encoding="utf-8" ?>
<GuidancePackage xmlns="http://schemas.microsoft.com/pag/gax-core"
xmlns:xi="http://www.w3.org/2001/XInclude"
Name="DataAccessGuidancePackage"
Caption="Data Access Guidance Package for Oracle"
Description="Data Access Guidance Package for Oracle"
Guid="8a1a5180-3c2f-4cdb-9c86-2a4ea7ff1a51"
SchemaVersion="1.0">
<
Overview Url="Docs\DataAccessOverview.htm"/>
<
HostData>
<
Menu Name="Solution" Text="Service Factory - Oracle DAL" Priority="1">
<
CommandBar Name="Solution"/>
</
Menu>
<
Menu Name="Project" Text="Service Factory - Oracle DAL" Priority="1">
<
CommandBar Name="Project"/>
</
Menu>
<
Menu Name="ProjectItem" Text="Service Factory - Oracle DAL" Priority="1">
<
CommandBar Name="Item"/>
</
Menu>
<
Menu Name="Folder" Text="Service Factory - Oracle DAL" Priority="1">
<
CommandBar Name="Solution Folder"/>
</
Menu>
<
Menu Name="WebProject" Text="Service Factory - Oracle DAL" Priority="1">
<
CommandBar Name="Web Project"/>
</
Menu>
<
Menu Name="WebProjectItem" Text="Service Factory - Oracle DAL" Priority="1">
<
CommandBar Name="Web Item"/>
</
Menu>
</
HostData>
<
Recipes>
<
xi:include href="Recipes/Binding.xml"/>
<
xi:include href="Recipes/SpecifyProjectResponsibility.xml"/>
<
xi:include href="Recipes/CreateDBConnection.xml"/>
<
xi:include href="Recipes/CreateDBConnectionFromConfig.xml"/>
<
xi:include href="Recipes/CreateBEFromDB.xml"/>
<
xi:include href="Recipes/CreateCRUDSp.xml"/>
<
xi:include href="Recipes/CreateDataRepository.xml"/>
<
xi:include href="Recipes/CreateDataRepositoriesFromBEProject.xml"/>
<
xi:include href="Recipes/CreateDataRepositoriesFromDCProject.xml"/>
</
Recipes>
</
GuidancePackage>
Now, whenever I am trying to register it,it is giving following error/warning...
Microsoft.Practices.RecipeFramework.ActionExecutionException: An exception occurred during the binding of reference or execution of recipe Register. Error was: Action Register failed to execute:
Failed to process package. See the Guidance Package Development output window for more information about the error..
Warning1The element 'Recipes' in namespace 'http://schemas.microsoft.com/pag/gax-core' has invalid child element 'include' in namespace 'http://www.w3.org/2001/XInclude'. List of possible elements expected: 'Recipe' in namespace 'http://schemas.microsoft.com/pag/gax-core'.
Now, what to do???