Deployment Problem

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I would appreciate if any of u could help me out of this mess.

I created a windows service and i have a another project(which has some Util
function) which is added as reference.Now when i compile,where will the
second project dll be placed. There are 2 directories , Bin/ Release or Debug
and Obj/Realease or Debug.
In my case it is successfully compiles the secondproject and placed the dll
in the bin folder and not in the obj folder.

please do advice me. how can i fix this problem

Regards

AR
 
The DLL will always be present in the bin folder. The obj folder just
contains intermediate output of your build, and should be considered as
a temp directory. Regarding the 'Release' or 'Debug' folders , that
depends on your active configuration. In the toolbar right next to the
Debug (Play) button there is a combo which shows 'Debug' or 'Release' if
it is set to 'Debug' then the output will be placed in the Debug\Bin
folder, otherwise in the 'Release\Bin' folder.

Check this article out
http://msdn.microsoft.com/library/d...tml/vxtskCreatingandEditingConfigurations.asp

Sijin Joseph
http://www.indiangeek.net
http://weblogs.asp.net/sjoseph
 
Back
Top