Monday, March 12, 2012

Web DLL location in VS2005

When I compiled in VS2003 it put the web DLL into the bin directory. Now that
I'm using the VS2005, there is no DLL in the Bin directory. Where or how do I
get at the DLL for the web site?
--
Chris Davolire:

Quote:

Originally Posted by

I'm using the VS2005, there is no DLL in the Bin directory.
Where or how do I get at the DLL for the web site?


You don't. The compilation model has changed,
unless you use Web Application Project.

For background info, see :
http://weblogs.asp.net/scottgu/arch.../08/445742.aspx
Download WAP at:
http://msdn.microsoft.com/asp.net/r...ap/default.aspx
and you can then use the same compilation model as in VS 2003.

Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en espaol : http://asp.net.do/foros/
===================================
"Chris Davoli" <ChrisDavoli@.discussions.microsoft.comwrote in message
news:59E4CB4E-A1E3-4B34-A9E8-BF5B2007A1A2@.microsoft.com...

Quote:

Originally Posted by

When I compiled in VS2003 it put the web DLL into the bin directory. Now that
I'm using the VS2005, there is no DLL in the Bin directory. Where or how do I
get at the DLL for the web site?
--
Chris Davoli
>


You need to compile the entire site to get it in libray format:

Use the aspnet compiler tool that comes with framework 2.0:

See the bat file attached to get an example.

Chris Davoli wrote:

Quote:

Originally Posted by

When I compiled in VS2003 it put the web DLL into the bin directory. Now that
I'm using the VS2005, there is no DLL in the Bin directory. Where or how do I
get at the DLL for the web site?


C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspn et_compiler.exe -c -f -v /ANYNAME -p c:\inetpub\wwwroot\AtlasTeste c:\temp\deploy\AtlasTeste
@.del c:\temp\deploy\AtlasTeste\*.bat
@.del c:\temp\deploy\AtlasTeste\*.bak
John, there is no attached bat file. Can you re-send it to me? Or just send
it to ChrisDavoli@.NoSpamComcast.net
Thanks.
--
Chris Davoli

"John Prado" wrote:

Quote:

Originally Posted by

You need to compile the entire site to get it in libray format:
>
Use the aspnet compiler tool that comes with framework 2.0:
>
See the bat file attached to get an example.
>
Chris Davoli wrote:

Quote:

Originally Posted by

When I compiled in VS2003 it put the web DLL into the bin directory. Now that
I'm using the VS2005, there is no DLL in the Bin directory. Where or how do I
get at the DLL for the web site?


>
>


Chris Davoli wrote:

Quote:

Originally Posted by

John, there is no attached bat file. Can you re-send it to me? Or just send
it to ChrisDavoli@.NoSpamComcast.net
>
Thanks.


Take a look at the end of my previous post.

Just to make the things easier to you:

aspnet_compiler.exe -c -f -v /ANYNAME -p [path of the source files]
[path to a deploy repository]

The other lines in bat is just to get clear asp.net app without the bat.
John, that .bat file was not attached. I checked all previous emails. Could
you try sending it again to chris.davoli@.NOSPAMchildrens.com
--
Chris Davoli

"John Prado" wrote:

Quote:

Originally Posted by

Chris Davoli wrote:

Quote:

Originally Posted by

John, there is no attached bat file. Can you re-send it to me? Or just send
it to ChrisDavoli@.NoSpamComcast.net
Thanks.


>
Take a look at the end of my previous post.
>
Just to make the things easier to you:
>
aspnet_compiler.exe -c -f -v /ANYNAME -p [path of the source files]
[path to a deploy repository]
>
The other lines in bat is just to get clear asp.net app without the bat.
>


Could you see those lines in my first reply:

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspn et_compiler.exe -c -f
-v /ANYNAME -p c:\inetpub\wwwroot\AtlasTeste c:\temp\deploy\AtlasTeste
@.del c:\temp\deploy\AtlasTeste\*.bat
@.del c:\temp\deploy\AtlasTeste\*.bak

This is the bat file, is a text file then your news reader show it like
plain text.

Chris Davoli wrote:

Quote:

Originally Posted by

John, that .bat file was not attached. I checked all previous emails. Could
you try sending it again to chris.davoli@.NOSPAMchildrens.com

0 comments:

Post a Comment