Hi, I am trying to add a new xaml file to an existing XAP.I am able to add a resource to the dll easily using
Module.Resources.Add(resource); ///by reading the bytes from a physical xaml file. I also tried adding the resource from one dll to another dll by looping through the embedded resources foreach (EmbeddedResource eres in Source.Module.Resources.OfType<EmbeddedResource>()) Target.Module.Resources.Add(eres); in both the cases the resources get added but I am not able to add the resource to the existing name.g.resources. Is there a way to do it. Thanks SrcK. -- -- mono-cecil
