no /bin folder and no binaries?

  • Thread starter Thread starter jc
  • Start date Start date
J

jc

I have an asp.net 2.0 website with vb.net classes. I can run that
website with no problems from vs.net and from an iis 6.0 server. I
deploy using a standard copying of files.

I noticed a similar website i did not develop has a /bin folder with
binaries.

I presume the developer compiled the site to binary at some point to
deploy only binaries. What other steps/happenings would cause the
creation of a /bin folder with binaries?

Thanks.
 
A binary is just a compiled class. You could have the same set up if
you compiled your vb.net classes to a binary file. The only different
is, a binary file you can not change and multiple developers can use
it. Class files you can change and other developers can change you
classes around.
 
A binary is just a compiled class.  You could have the same set up if
you compiled your vb.net classes to a binary file.  The only different
is, a binary file you can not change and multiple developers can use
it.  Class files you can change and other developers can change you
classes around.
 
but by default, binaries and a /bin directory are not generated right?

Would you know, what generates /bin and the binaries in that other
project? the other developer was showing me that she deploys through
some menu option, perhaps thats what creates it.

Thanks.
 
Back
Top