我有這樣的解決方案structute:的csproj文件中的設置項目
Solution.sln
|--WebUI.csproj (has Core.csproj as dependency)
|--Core.csproj
|--Tests
|--UnitTests
|--WebUI.UnitTest.csproj (has Core.csproj and WebUI.csproj as dependencies)
|--Core.UnitTest.csproj (has Core.csproj as dependency)
我要補充WebUI.csproj建立WebUI.UnitTest.csproj和Core.UnitTest.csproj一起? (在我的WebUI \ bin文件夾中,我需要這些庫:WebUI.UnitTest.dll和Core.UnitTest.dll)。
謝謝!
如果您構建解決方案,WebUI.UnitTest.csproj和Core.UnitTest.csproj應該已經構建好。你爲什麼希望他們從WebUI.csproj內部構建? (如果這是你想要的,我不確定我是否理解了這個問題) – stijn