Hello Everybody
I got the solution for my problem. Actually problem is presented inreceipe xml file. In one receipe xml file this below code was written.
<Argument Name="EntLibPath" Required="false">
<ValueProvider Type="Microsoft.Practices.RecipeFramework.Extensions.ValueProviders.OS.LocalMachineEntryProvider, Microsoft.Practices.RecipeFramework.Extensions"
RegistryPath="Software\Microsoft\patterns and practices\Service Factory" RegistryEntry="EntlibBinaryPath"/>
</Argument>
and the mentioned path("Software\Microsoft\patterns and practices\Service Factory") is not present in my system registry. So I change this Argument defination with below code
<Argument Name="EntLibPath" Required="false">
<ValueProvider Type="Evaluator" Expression="C:\Program Files\Microsoft Enterprise Library 3.0 - April 2007\Bin\"/>
</Argument>
Now the receipe is running fine.
Regards
Sunil Sinha