Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
325
Deploy infragistics components
posted

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 

Parents
No Data
Reply
  • 816
    Verified Answer
    posted

    Hi,

    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 :)

Children