Hi,
My project has references to Microsoft Enterprise Library which I would like to include in the Bin folder and also the source control system so that when the app is built from CruiseControl, it has all the references required.
Is this the best approach and does anyone have any guidance on actually doing this? I've tried, but I'm stumped.
Thanks in advance,
Ryan
Including referenced DLL's in bin folder
Moderator: SourceGear
-
- Posts: 10
- Joined: Thu Jan 19, 2006 5:11 am
-
- Posts: 10
- Joined: Thu Jan 19, 2006 5:11 am
Well, I just have a normal .CS project and there are references to the MS entlib DLL's. The references are compiled and deployed OK with the project, but when I check them out from source control on another machine they are not there.
Obviously they are not in source control and I can place them in there manually, but I'd rather have them placed in the project so that when I build on the new system, the references refer to valid locations.
Does that make sense?
Ryan
Obviously they are not in source control and I can place them in there manually, but I'd rather have them placed in the project so that when I build on the new system, the references refer to valid locations.
Does that make sense?
Ryan
You can only put files under source control that exist within the project root, and references don't actually exist in the project source unless you copy them there.
One workaround would be to copy the dll to a location within the project and explicitly add the dll file to project. VS will then recognize it as a file that goes into source control, and it should then be available for projects on any other workstation.
One workaround would be to copy the dll to a location within the project and explicitly add the dll file to project. VS will then recognize it as a file that goes into source control, and it should then be available for projects on any other workstation.
-
- Posts: 40
- Joined: Thu Apr 06, 2006 10:33 pm