Rank: Newbie Groups: Member
Joined: 5/31/2012 Posts: 3
|
Hi I noticed that when building our solution, which uses the tree view component, the build process generates two folders under the bin folder: another bin (which contains the license file) and images folder, which contains subfolder EOTreeView, which then contains tree images.
I.e. ~\bin\bin\eo_web.licx ~\bin\bin\images\EOTreeView\*.gif
We have the license in global.asax and in ~\bin folder. Images are in ~\images\EoTreeView folder The ImageBaseDirectory of the tree is ~/images/EOTreeView
I manually delete these extra folders before deployment to servers and everything works well.
Is there a way to prevent these extra folders from appearing?
BR Olavi
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
Hi,
We have never seen this before. This might have to do with your build process. Our DLL is just a file that your application reference and it does not participate your build process in anyway. In another word, no code is run from our DLL, thus no action is taken from our side during the build.
The license file is slightly different, Visual Studio will try to compile it (it should not do that). So you may want to explicitly remove the license file from your project. It is not necessary to use the license file and applying license in Global.asax at the same time.
Thanks!
|
Rank: Newbie Groups: Member
Joined: 5/31/2012 Posts: 3
|
Hi
Ok, now that you said "build process", my lights went on: those items were tagged as "Content / Copy always to output directory". I changed that to "Never copy" and the problem went away.
Thanks for your help!
BR Olavi
|