Sharing code between 2 projects without a dll

前端 未结 7 1814
孤城傲影
孤城傲影 2020-12-29 23:18

How can I have code-sharing between two projects without making a dll?

The issue is: I have a tool that syncs users & groups from LDAP to a database.

Now

7条回答
  •  情歌与酒
    2020-12-29 23:47

    How about hand-modify the project files to point to the same source file?

    Another option - put both projects in the same folder. Add a class to one, then in the other project add existing class and point to the class just created.

提交回复
热议问题