Visual Studio&Source Control: How to have shared code?

后端 未结 4 1918
傲寒
傲寒 2021-01-22 20:31

i want to have some shared code (code library, controls, utilities, helper classes, etc) in Visual Studio. i do not mean shared assemblies, i mean shared code (i.e. i want to sh

4条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-22 21:10

    We use ClickOnce deployment, which has been very reliable. With ClickOnce, there is conceptually a single object, the application, although many files (including DLLS) are downloaded, although hidden to the user. Shared code is then dealt with through shared projects.

    But if you actually physically require just a single file, ClickOnce won't work for you...

提交回复
热议问题