Hi,
When we deploy a WPF application that is using infragistics components can we just add the assembly or do we have to run an installation at the user's desk?
Thanks,Femke
It is sufficient to add the assemblies to your WPF project.
The purpose of the installer is to provide a convenient way to add all the Infragistics assemblies to your Global Assembly Cache (GAC). This makes it easier to find the assemblies when you go to "Add References..." in your WPF project. Specifically, the assemblies will appear in the default list of .NET assemblies, so you don't have to go browsing around your file system to find the .dll files. This can also help you avoid the use of incompatible assemblies, for instance when two assemblies depend on each other, but have different versions.
I hope this answers your question :)
That answers the question perfectly, many thanks.
Femke