Team build of Web Projects generates App_web_xxxx.dll files and TFSBuild.Proj Script
Posted
by Steve Johnson
on Stack Overflow
See other posts from Stack Overflow
or by Steve Johnson
Published on 2010-06-11T07:30:55Z
Indexed on
2010/06/11
11:43 UTC
Read the original article
Hit count: 474
Hi all,
I have a web application that has some non-web projects as well.
When using Web Deployment, a single assembly is generated for all the aspx.vb files.
When using Team Build (TS 2008), a lot number App_Web_xxx.dll file(s) are generated instead of a single assembly.
How can i solve this problem and change the TFSBuild.proj file so that it can generate a single Web Assembly instead of a lot number of assemblies.
Please help.
Thanks
Edit:
I guess thats because the MERGE operation is not occurring like it used to happen for Web Deployment Project in my solution. How can i enable MERGE of App_web_*.dll files into a single Web.dll assembly file and delete the satellite assemblies?
Here is my code from TFSBuild.proj file: (MY web project is in Release|.NET Config and all other projects within the solution are in Release|Any CPU) true .\Debug true true Web true false .\Release true true Web true
Please tell me what are the corrections i need to do.,
© Stack Overflow or respective owner