Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have multiple solutions on my system that are unrelated to each other. For some strange reason, files from one solution are showing up in the second solution's bin directory when I do a build of the second solution. For example, I have the following Solution folders and files:

SolutionA\Dependencies\lib\ajaxuploader.lic

SolutionB\WebSite\bin

When I open SolutionB in Visual Studio 2008 and then rebuild the solution, it always copies the ajaxuploader.lic file from SolutionA to the SolutionB\WebSite\Bin folder. They are completely different solutions.

I even checked out the files from SVN on to a clean system and this weird behavior is still happening. I know the file is being copied from SolutionA because if I remove the SolutionA directory or files, then they don't show up in SolutionB when I rebuilt it.

Can anybody shed some light on what is happening here?

Thanks in advance.

share|improve this question
It might be worth opening your .sln and .csproj (etc.) files in Notepad and doing a Ctrl + F to hunt for the offending files or projects to make absolutely sure they aren't referenced somewhere. – Sir Crispalot Nov 1 '11 at 9:02
This is a feature, not a bug, if B uses an assembly reference for an assembly built by A. License files for web sites, kinda weird btw. – Hans Passant Nov 1 '11 at 12:19
I tried searching the .sln and.csproj files (and all other files) and can't find any references to them anywhere. That's why this issue is so extremely puzzling. – Stephen Kennedy Nov 1 '11 at 13:17
Hans, the problem here is that both of the solutions are completely independent and unrelated solutions. Neither one of them has a reference to the other one. The license file is for a control that is used in A. That control is not used anywhere in B though, so I'm getting extremely confused as to why those files are showing up in B when I do a build. – Stephen Kennedy Nov 1 '11 at 13:19

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.