vote up 2 vote down star

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 ship one assembly with my application, the executable assembly).

The technique in other development environments way is to have the common source code in a path on my machine, and the IDE is given a list of paths to search for code files.

Visual Studio does not support code search paths.

The back-up hack solution is to copy the source-code over and over into every project. But then in order to keep them all as one version, they are shared in source control. This works well when your source control provider is Microsoft Visual SourceSafe - which supports shared files.

But other source control products (CVS, Subversion, Microsoft Team Foundation Source Save Server) do not support shared files.

So how does everyone else avoid shipping DLL's with their executable?


Update 1

It is an issue of single file deployment. ClickOnce generates 18 files in 3 folders (i.e. more than one file)

flag

55% accept rate
SVN supports shared files via svn:externals properties – Joel Coehoorn Nov 4 '08 at 16:09
Oh no! There are lesser source control projects?? :O – CindyH Nov 4 '08 at 16:39

4 Answers

vote up 2 vote down

I could propose two solutions:

  1. Visual Studio allows you to add a link to a file. Choose "Add Existing Item", pick your file and then click the arrow next to the "Add" button. A popup will display and you should choose "Add as link" from there. Now you can store your common code in one location (folder).
  2. Compile your common code in reusable assemblies and use them in your projects. Use ILMerge to merge all assemblies into one when deploying. I personally prefer this option.
link|flag
Hey, that´s a nice one! Going to try that ILMerge =) – Seiti Nov 4 '08 at 16:37
+1 for add as link. We use this all the time for sharing a CommonAssemblyInfo.cs file between projects in a solution. – tomfanning Jun 4 at 9:15
vote up 0 vote down

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...

link|flag
vote up 1 vote down

At my work we starting to solve this problem using Subversion´s external folders. You just need to put a 'external' property on yor root folder (or any folder), like:

ExternalLib https://yourrepo/SharedLibs/trunk

When you update the project, the folder ExternalLib will be created and populated with the repo´s contents. Any commit will be reflected on the respectively repo.

So, you can make your back-up hack solution works with SVN too =)

link|flag
vote up 0 vote down

maybe consider having shared assemblies and use a tool like ILMerge during your build process to merge them all to one bug assembly.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.