Hi jose,
how you can get an instance of the GuidancePackage ?
If I use
RecipeManager rm = new RecipeManager();
GuidancePackage gp = rm.GetPackage("GATSteps09");
IDictionary args = new Hashtable();
args.Add("EntityClassName", dr[0].ToString());
// Replace with actual code
args.Add("HowMany", dr.Table.Columns.Count.ToString());
gp.Execute("AddEntityComplete", args);
GetPackage return null. The Package GATSteps09 is enabled. I've tried with GetInstalledPackages and GetEnabledPackage without any result. Using Reflector I've seen that GetPackage return Components["name"] as GuidancePackage but Components is a 0 lenght collection.
Thanks in advance
Roberto Brunetti