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
230
Infragistics dll's
posted

Is there a way to register all Infragistic's dll's on a Server so we don't have to create a setup project for each program.  I tried copying all dll's and xml's and then using regsvr32.exe, but it gives errors.  This is critical to our deployment strategy.  Basically, we want all program files sitting on a server, then just create shorcuts on the user desktop which points to the exe that resides on the server.

Parents
No Data
Reply
  • 45049
    Suggested Answer
    posted

    jhammer80 said:
    I tried copying all dll's and xml's and then using regsvr32.exe, but it gives errors.

    regsvr32.exe is used for COM/ActiveX .dll files, and so won't work for .NET .dll files.  You might consider using gacutil instead.

    You might also consider creating your own setup program that installs into the Global Assembly Cache (GAC) those assemblies of ours that you need installed.  Installing using this setup program would then be a prerequisite for all other programs that you install.  The important point here is that all of your other programs must be using the exact same version of our assemblies (including which service release is used).

    jhammer80 said:
    Basically, we want all program files sitting on a server, then just create shorcuts on the user desktop which points to the exe that resides on the server.

    This sounds like you want to use ClickOnce deployment.  Take a look at MSDN for more information on this.  The important thing to do when using our controls in ClickOnce is that you have to set up their Publish properties to "Include" the files, rather than the default "Prerequisite".

Children