What is the best way to make shared libraries available to multiple applications?

后端 未结 1 382
旧巷少年郎
旧巷少年郎 2021-02-04 12:43

Like most shops we\'ve got a team of people working on various projects that all need to access the same core information and functions that relate to our business, usually in C

1条回答
  •  闹比i
    闹比i (楼主)
    2021-02-04 13:48

    At my company we have the same issue. Currently, we just use .bat files that go to our SVN Trunk and pull the most recent .dll references and fill a local References folder for the project you are working on.

    However, we are currently working on switching this system over to NuGet. I'm not 100% sure how it works, but it's definitely worth looking into. Looks like you can set it up to where you can point it to a shared code repository, and then in Visual Studio using a plugin, it's as simple as just right clicking and hitting 'Update' everytime you need to get the newest code.

    0 讨论(0)
提交回复
热议问题