How can C# use a legacy DLL simply without registration(regsvr32)

前端 未结 5 1185
醉话见心
醉话见心 2021-01-02 14:15

Situation
I run a build system that executes many builds for many project. To avoid one build impacting another we lock down the build user to only its

5条回答
  •  我在风中等你
    2021-01-02 15:02

    Thanks for all the help.

    We changed from early-binding to late-binding because we never really needed the DLL at compile time. This pushed the registration requirement from the build server to the integration test server (where we execute the installer which handles the registration). We try to keep the build system pristine and have easy-to-reset integration systems.

    Thanks again Peter

提交回复
热议问题