Я пытаюсь построить проект замка, используя nant, и получить вывод, заканчивающийся следующим:
common.compile-dll:
[csc] Compiling 92 files to 'C:\code\OSS\castle\build\net-3.5\release\Castle.Core.dll'.
[csc] error CS0006: Metadata file 'System.Core.dll' could not be found
[csc] error CS0006: Metadata file 'System.Data.DataSetExtensions.dll' could not be found
[csc] error CS0006: Metadata file 'System.Data.Linq.dll' could not be found
[csc] error CS0006: Metadata file 'System.ServiceModel.Web.dll' could not be found
[csc] error CS0006: Metadata file 'System.Web.Extensions.Design.dll' could not be found
[csc] error CS0006: Metadata file 'System.Web.Extensions.dll' could not be found
[csc] error CS0006: Metadata file 'System.Xml.Linq.dll' could not be found
BUILD FAILED
C:\code\OSS\castle\common-project.xml(127,5):
External Program Failed: c:\WINDOWS\Microsoft.NET\Framework\v3.5\csc.exe (return code was 1)
Total time: 1.1 seconds.
BUILD FAILED
Nested build failed. Refer to build log for exact reason.
Теперь, возможно, я мог бы это выяснить или, по крайней мере, задать более законный вопрос, если бы я знал местоположение журнала сборки, куда он обычно идет? Добавление опции -l к команде nant приводит к журналу, содержащему точно такое же сообщение, которое было получено на экран. У кого-нибудь есть идеи?
(Интересно, что это точная копия вопроса, который был задан ранее и удален без ответа)