MSBuild doesn't copy references (DLL files) if using project dependencies in solution

前端 未结 19 1332
Happy的楠姐
Happy的楠姐 2020-11-22 07:24

I have four projects in my Visual Studio solution (everyone targeting .NET 3.5) - for my problem only these two are important:

  1. MyBaseProject &
相关标签:
19条回答
  • 2020-11-22 08:15

    Using deadlydog's scheme,

    Y => X => A => B,

    my problem was when I built Y, the assemblies (A and B, all 15 of them) from X were not showing up in Y's bin folder.

    I got it resolved by removing the reference X from Y, save, build, then re-add X reference (a project reference), and save, build, and A and B started showing up in Y's bin folder.

    0 讨论(0)
提交回复
热议问题