Share c# class source code between several projects

前端 未结 7 795
遥遥无期
遥遥无期 2020-12-09 00:59

I have written a class that will handle internal logging in my application. Now I want to use this class in another new and totally separate project.

I could simply

相关标签:
7条回答
  • 2020-12-09 01:57

    You can also use use your versioning system to do this.

    We usually create Directory with Solution and Main Project and then commit this directory to SVN. Then all shared libraries are linked using svn:external - so all Projects exists in same solution directory.

    After commit anyone can checkout working solution with all external dependencies.

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