I've got an asp.net mvc deployment package that I'm trying to build with team city. The package builds without any problems, but the bin folder contains file that are not needed (and cause the site to fail when present).

If I build the same package from visual studio the additional files are not present.

The additional files are:

Microsoft.VisualBasic.Activities.Compiler.dll
mscorlib.dll
normidna.nlp
normnfc.nlp
normnfd.nlp
normnfkc.nlp
normnfkd.nlp
System.Data.dll
System.Data.OracleClient.dll
System.EnterpriseServices.dll
System.EnterpriseServices.Wrapper.dll
System.Transactions.dll

What can I do to prevent these additional assemblies and .nlp files from being included in the package?

UPDATE

After a bit more digging through log files I've found that the _CopyFilesMarkedCopyLocal build task is copying the files into the bin directory. The odd thing is that the assemblies are not marked as copy local.

link|improve this question

56% accept rate
feedback

1 Answer

up vote 5 down vote accepted

After a bunch more digging around I noticed that the build server had the .Net framework on, but not the framework SDK. After installing the SDK on the build server the additional assemblies were no longer added.

link|improve this answer
What did you have to install? I don't want to install VisualStudio on the build server to get that SDK - is there another you have installed? – stack72 Jun 8 '11 at 17:22
My build server is running Windows 7 so I installed this: microsoft.com/downloads/en/… – ilivewithian Jun 9 '11 at 9:23
thanks so much - this has seriously saved me + 1 :) – stack72 Jun 9 '11 at 21:17
Specifically, I found it was required to install the "Intellisense and Reference Assemblies" feature from the Web Installer. – Tim Iles Oct 20 '11 at 11:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.