|
I setup a build using team build and it created and xml file called TFSBuild.proj. My solution has several web projects and several other projects to which my web projects refer...such as my data layer, my file handling layer, etc... When I run the build it puts all of the .dlls into one folder called "release" and all of the code it pulled out of the source repository into a folder called "source". I would like it if after the build I had all of the code and referenced .dll's in a useful places, with the proper projects, ready for deployment.
ok - lets say my first web project in my solution is called website, and it references several .dll's in the solution.
I guess I could copy the code I want from the source folder, because it's the latest version, but that doesn't have the needed referenced .dll's, so then I could go to the "release" folder and get the needed .dll's. But if I hard code the copy command, then what if the references change? How can I just get the .dll's I need into a folder called bin in the folder with the other web stuff I want to release? Also, I would like to just get certain files, that I would put on my web servers, not all of the project files and other things I don't need. Thanks for any help you can give!
Thanks
< |