473,414 Members | 1,766 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,414 software developers and data experts.

where did my dll go?

I have a local serve that holds my source code and i'm using vs2005 for 2.0
to build the site. I'm runingthe site off my local pc (filesystem). I built
the site but can't find the dll or the bin directory.
Any Ideas?
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
Apr 15 '06 #1
8 2470
2.0 changed the way that works. Instead of putting the .dll in the bin
folder, things are located (default) at
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET Files

Although if you're using any third party controls (like Infragistics),
you'll have an App_Licenses.dll in the bin folder.

Mike

"WebBuilder451" <We***********@discussions.microsoft.com> wrote in message
news:06**********************************@microsof t.com...
I have a local serve that holds my source code and i'm using vs2005 for 2.0
to build the site. I'm runingthe site off my local pc (filesystem). I
built
the site but can't find the dll or the bin directory.
Any Ideas?
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes

Apr 15 '06 #2
And the model how you can actually get dlls is somewhat complicated (due to
lots of options). By default with Publish Web Site command in VS2005
(essentially means precompiling for deployment where you also get deployable
files) you get something, actually quite bunch of files to deploy to the
server

If you want to get to the model where you get single dll for building the
application, you have left two choices depending on the model how you work.

1. if you want to work with the "web site" model, default in VS2005, where
dll is not done when you build the web site project , you can download Web
Deployment Project (WDP) add-on. It is basically seperate project to VS2005,
to make deployable files (ddls) based on certain conditions you set
http://msdn.microsoft.com/asp.net/re...structure/wdp/

2) If you want to work with very similar model as you did in VS2003, where
you were always required to have explicit compilation step (which produced
one dll), but on the other hand certain compilation related semantics were
very clear (which have changed with web site model), you can download Web
Application Project add-on
http://msdn.microsoft.com/asp.net/re...structure/wap/

I know, at first this seems very, very confusing, so you might want to have
a look at these forum & blog posts to understand what the differences really
are. There are no right or wrong answers right away, it is question of how
you work, you get things done with both models, equally.

http://forums.asp.net/thread/1256579.aspx
http://webproject.scottgu.com
http://weblogs.asp.net/scottgu/archi...05/442032.aspx

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"Mike Hildner" <mh*************@afweb.com> wrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
2.0 changed the way that works. Instead of putting the .dll in the bin
folder, things are located (default) at
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET Files

Although if you're using any third party controls (like Infragistics),
you'll have an App_Licenses.dll in the bin folder.

Mike

"WebBuilder451" <We***********@discussions.microsoft.com> wrote in message
news:06**********************************@microsof t.com...
I have a local serve that holds my source code and i'm using vs2005 for
2.0
to build the site. I'm runingthe site off my local pc (filesystem). I
built
the site but can't find the dll or the bin directory.
Any Ideas?
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes


Apr 16 '06 #3
can these then be copied to the bin folder on the live web server?
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
"Mike Hildner" wrote:
2.0 changed the way that works. Instead of putting the .dll in the bin
folder, things are located (default) at
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET Files

Although if you're using any third party controls (like Infragistics),
you'll have an App_Licenses.dll in the bin folder.

Mike

"WebBuilder451" <We***********@discussions.microsoft.com> wrote in message
news:06**********************************@microsof t.com...
I have a local serve that holds my source code and i'm using vs2005 for 2.0
to build the site. I'm runingthe site off my local pc (filesystem). I
built
the site but can't find the dll or the bin directory.
Any Ideas?
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes


Apr 16 '06 #4
I perfer to use the builtin deployment, but this will delete the images (and
other files) that exist on the wbsite. I don't mind copyingthe files
manuelly, but as you said the dlls are not (officially) created when you hit
build site. So i've tried option 1 and this will work, but is not the way
they are recomending.
Thanks
kes
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
"Teemu Keiski" wrote:
And the model how you can actually get dlls is somewhat complicated (due to
lots of options). By default with Publish Web Site command in VS2005
(essentially means precompiling for deployment where you also get deployable
files) you get something, actually quite bunch of files to deploy to the
server

If you want to get to the model where you get single dll for building the
application, you have left two choices depending on the model how you work.

1. if you want to work with the "web site" model, default in VS2005, where
dll is not done when you build the web site project , you can download Web
Deployment Project (WDP) add-on. It is basically seperate project to VS2005,
to make deployable files (ddls) based on certain conditions you set
http://msdn.microsoft.com/asp.net/re...structure/wdp/

2) If you want to work with very similar model as you did in VS2003, where
you were always required to have explicit compilation step (which produced
one dll), but on the other hand certain compilation related semantics were
very clear (which have changed with web site model), you can download Web
Application Project add-on
http://msdn.microsoft.com/asp.net/re...structure/wap/

I know, at first this seems very, very confusing, so you might want to have
a look at these forum & blog posts to understand what the differences really
are. There are no right or wrong answers right away, it is question of how
you work, you get things done with both models, equally.

http://forums.asp.net/thread/1256579.aspx
http://webproject.scottgu.com
http://weblogs.asp.net/scottgu/archi...05/442032.aspx

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"Mike Hildner" <mh*************@afweb.com> wrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
2.0 changed the way that works. Instead of putting the .dll in the bin
folder, things are located (default) at
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET Files

Although if you're using any third party controls (like Infragistics),
you'll have an App_Licenses.dll in the bin folder.

Mike

"WebBuilder451" <We***********@discussions.microsoft.com> wrote in message
news:06**********************************@microsof t.com...
I have a local serve that holds my source code and i'm using vs2005 for
2.0
to build the site. I'm runingthe site off my local pc (filesystem). I
built
the site but can't find the dll or the bin directory.
Any Ideas?
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes



Apr 16 '06 #5
Yup,

well, basically the one option without even doing the publish step
(essentially precompilation for deployment) is just xcopy everything on the
production server. It means deploying also the source code.

Personally, I prefer web deployment projects with the default model because
I get all the benefits of the new model (wdp doesn't change that, it isd
separate project is vs solution), but I also get the neatness of deployment
plus other things that WDPs bring (dll per folder, web.config settings
switch, control over what is deployed e.g MSBuild ) and so on.

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"WebBuilder451" <We***********@discussions.microsoft.com> wrote in message
news:D3**********************************@microsof t.com...
I perfer to use the builtin deployment, but this will delete the images
(and
other files) that exist on the wbsite. I don't mind copyingthe files
manuelly, but as you said the dlls are not (officially) created when you
hit
build site. So i've tried option 1 and this will work, but is not the way
they are recomending.
Thanks
kes
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
"Teemu Keiski" wrote:
And the model how you can actually get dlls is somewhat complicated (due
to
lots of options). By default with Publish Web Site command in VS2005
(essentially means precompiling for deployment where you also get
deployable
files) you get something, actually quite bunch of files to deploy to the
server

If you want to get to the model where you get single dll for building the
application, you have left two choices depending on the model how you
work.

1. if you want to work with the "web site" model, default in VS2005,
where
dll is not done when you build the web site project , you can download
Web
Deployment Project (WDP) add-on. It is basically seperate project to
VS2005,
to make deployable files (ddls) based on certain conditions you set
http://msdn.microsoft.com/asp.net/re...structure/wdp/

2) If you want to work with very similar model as you did in VS2003,
where
you were always required to have explicit compilation step (which
produced
one dll), but on the other hand certain compilation related semantics
were
very clear (which have changed with web site model), you can download Web
Application Project add-on
http://msdn.microsoft.com/asp.net/re...structure/wap/

I know, at first this seems very, very confusing, so you might want to
have
a look at these forum & blog posts to understand what the differences
really
are. There are no right or wrong answers right away, it is question of
how
you work, you get things done with both models, equally.

http://forums.asp.net/thread/1256579.aspx
http://webproject.scottgu.com
http://weblogs.asp.net/scottgu/archi...05/442032.aspx

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"Mike Hildner" <mh*************@afweb.com> wrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
> 2.0 changed the way that works. Instead of putting the .dll in the bin
> folder, things are located (default) at
> C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET Files
>
> Although if you're using any third party controls (like Infragistics),
> you'll have an App_Licenses.dll in the bin folder.
>
> Mike
>
> "WebBuilder451" <We***********@discussions.microsoft.com> wrote in
> message
> news:06**********************************@microsof t.com...
>>I have a local serve that holds my source code and i'm using vs2005 for
>>2.0
>> to build the site. I'm runingthe site off my local pc (filesystem). I
>> built
>> the site but can't find the dll or the bin directory.
>> Any Ideas?
>>
>>
>> --
>> thanks (as always)
>> some day i''m gona pay this forum back for all the help i''m getting
>> kes
>
>


Apr 16 '06 #6
Thanks for responding,
What do you do about the images and other files that get deleted?

--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
"Teemu Keiski" wrote:
Yup,

well, basically the one option without even doing the publish step
(essentially precompilation for deployment) is just xcopy everything on the
production server. It means deploying also the source code.

Personally, I prefer web deployment projects with the default model because
I get all the benefits of the new model (wdp doesn't change that, it isd
separate project is vs solution), but I also get the neatness of deployment
plus other things that WDPs bring (dll per folder, web.config settings
switch, control over what is deployed e.g MSBuild ) and so on.

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"WebBuilder451" <We***********@discussions.microsoft.com> wrote in message
news:D3**********************************@microsof t.com...
I perfer to use the builtin deployment, but this will delete the images
(and
other files) that exist on the wbsite. I don't mind copyingthe files
manuelly, but as you said the dlls are not (officially) created when you
hit
build site. So i've tried option 1 and this will work, but is not the way
they are recomending.
Thanks
kes
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
"Teemu Keiski" wrote:
And the model how you can actually get dlls is somewhat complicated (due
to
lots of options). By default with Publish Web Site command in VS2005
(essentially means precompiling for deployment where you also get
deployable
files) you get something, actually quite bunch of files to deploy to the
server

If you want to get to the model where you get single dll for building the
application, you have left two choices depending on the model how you
work.

1. if you want to work with the "web site" model, default in VS2005,
where
dll is not done when you build the web site project , you can download
Web
Deployment Project (WDP) add-on. It is basically seperate project to
VS2005,
to make deployable files (ddls) based on certain conditions you set
http://msdn.microsoft.com/asp.net/re...structure/wdp/

2) If you want to work with very similar model as you did in VS2003,
where
you were always required to have explicit compilation step (which
produced
one dll), but on the other hand certain compilation related semantics
were
very clear (which have changed with web site model), you can download Web
Application Project add-on
http://msdn.microsoft.com/asp.net/re...structure/wap/

I know, at first this seems very, very confusing, so you might want to
have
a look at these forum & blog posts to understand what the differences
really
are. There are no right or wrong answers right away, it is question of
how
you work, you get things done with both models, equally.

http://forums.asp.net/thread/1256579.aspx
http://webproject.scottgu.com
http://weblogs.asp.net/scottgu/archi...05/442032.aspx

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"Mike Hildner" <mh*************@afweb.com> wrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
> 2.0 changed the way that works. Instead of putting the .dll in the bin
> folder, things are located (default) at
> C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET Files
>
> Although if you're using any third party controls (like Infragistics),
> you'll have an App_Licenses.dll in the bin folder.
>
> Mike
>
> "WebBuilder451" <We***********@discussions.microsoft.com> wrote in
> message
> news:06**********************************@microsof t.com...
>>I have a local serve that holds my source code and i'm using vs2005 for
>>2.0
>> to build the site. I'm runingthe site off my local pc (filesystem). I
>> built
>> the site but can't find the dll or the bin directory.
>> Any Ideas?
>>
>>
>> --
>> thanks (as always)
>> some day i''m gona pay this forum back for all the help i''m getting
>> kes
>
>


Apr 17 '06 #7
Not sure, never tried.

Mike

"WebBuilder451" <We***********@discussions.microsoft.com> wrote in message
news:1C**********************************@microsof t.com...
can these then be copied to the bin folder on the live web server?
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
"Mike Hildner" wrote:
2.0 changed the way that works. Instead of putting the .dll in the bin
folder, things are located (default) at
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET Files

Although if you're using any third party controls (like Infragistics),
you'll have an App_Licenses.dll in the bin folder.

Mike

"WebBuilder451" <We***********@discussions.microsoft.com> wrote in
message
news:06**********************************@microsof t.com...
>I have a local serve that holds my source code and i'm using vs2005 for
>2.0
> to build the site. I'm runingthe site off my local pc (filesystem). I
> built
> the site but can't find the dll or the bin directory.
> Any Ideas?
>
>
> --
> thanks (as always)
> some day i''m gona pay this forum back for all the help i''m getting
> kes


Apr 17 '06 #8
They can be excluded from the deployment, as you can configure what the wdp
bundles within the deployment site. See the link about WDP and there "Using
Web Deployment Projects with Visual Studio 2005." guide

Plus that since WDP actually creates just a dll, you could also deploy other
files (aspx's etc) manually.

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"WebBuilder451" <We***********@discussions.microsoft.com> wrote in message
news:E8**********************************@microsof t.com...
Thanks for responding,
What do you do about the images and other files that get deleted?

--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
"Teemu Keiski" wrote:
Yup,

well, basically the one option without even doing the publish step
(essentially precompilation for deployment) is just xcopy everything on
the
production server. It means deploying also the source code.

Personally, I prefer web deployment projects with the default model
because
I get all the benefits of the new model (wdp doesn't change that, it isd
separate project is vs solution), but I also get the neatness of
deployment
plus other things that WDPs bring (dll per folder, web.config settings
switch, control over what is deployed e.g MSBuild ) and so on.

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"WebBuilder451" <We***********@discussions.microsoft.com> wrote in
message
news:D3**********************************@microsof t.com...
>I perfer to use the builtin deployment, but this will delete the images
>(and
> other files) that exist on the wbsite. I don't mind copyingthe files
> manuelly, but as you said the dlls are not (officially) created when
> you
> hit
> build site. So i've tried option 1 and this will work, but is not the
> way
> they are recomending.
> Thanks
> kes
> --
> thanks (as always)
> some day i''m gona pay this forum back for all the help i''m getting
> kes
>
>
> "Teemu Keiski" wrote:
>
>> And the model how you can actually get dlls is somewhat complicated
>> (due
>> to
>> lots of options). By default with Publish Web Site command in VS2005
>> (essentially means precompiling for deployment where you also get
>> deployable
>> files) you get something, actually quite bunch of files to deploy to
>> the
>> server
>>
>> If you want to get to the model where you get single dll for building
>> the
>> application, you have left two choices depending on the model how you
>> work.
>>
>> 1. if you want to work with the "web site" model, default in VS2005,
>> where
>> dll is not done when you build the web site project , you can download
>> Web
>> Deployment Project (WDP) add-on. It is basically seperate project to
>> VS2005,
>> to make deployable files (ddls) based on certain conditions you set
>> http://msdn.microsoft.com/asp.net/re...structure/wdp/
>>
>> 2) If you want to work with very similar model as you did in VS2003,
>> where
>> you were always required to have explicit compilation step (which
>> produced
>> one dll), but on the other hand certain compilation related semantics
>> were
>> very clear (which have changed with web site model), you can download
>> Web
>> Application Project add-on
>> http://msdn.microsoft.com/asp.net/re...structure/wap/
>>
>> I know, at first this seems very, very confusing, so you might want to
>> have
>> a look at these forum & blog posts to understand what the differences
>> really
>> are. There are no right or wrong answers right away, it is question of
>> how
>> you work, you get things done with both models, equally.
>>
>> http://forums.asp.net/thread/1256579.aspx
>> http://webproject.scottgu.com
>> http://weblogs.asp.net/scottgu/archi...05/442032.aspx
>>
>> --
>> Teemu Keiski
>> ASP.NET MVP, AspInsider
>> Finland, EU
>> http://blogs.aspadvice.com/joteke
>>
>> "Mike Hildner" <mh*************@afweb.com> wrote in message
>> news:%2****************@TK2MSFTNGP03.phx.gbl...
>> > 2.0 changed the way that works. Instead of putting the .dll in the
>> > bin
>> > folder, things are located (default) at
>> > C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET
>> > Files
>> >
>> > Although if you're using any third party controls (like
>> > Infragistics),
>> > you'll have an App_Licenses.dll in the bin folder.
>> >
>> > Mike
>> >
>> > "WebBuilder451" <We***********@discussions.microsoft.com> wrote in
>> > message
>> > news:06**********************************@microsof t.com...
>> >>I have a local serve that holds my source code and i'm using vs2005
>> >>for
>> >>2.0
>> >> to build the site. I'm runingthe site off my local pc (filesystem).
>> >> I
>> >> built
>> >> the site but can't find the dll or the bin directory.
>> >> Any Ideas?
>> >>
>> >>
>> >> --
>> >> thanks (as always)
>> >> some day i''m gona pay this forum back for all the help i''m
>> >> getting
>> >> kes
>> >
>> >
>>
>>
>>


Apr 18 '06 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

47
by: Andrey Tatarinov | last post by:
Hi. It would be great to be able to reverse usage/definition parts in haskell-way with "where" keyword. Since Python 3 would miss lambda, that would be extremly useful for creating readable...
3
by: A.V.C. | last post by:
Hello, I found members of this group very helpful for my last queries. Have one problem with CASE. I can use the column name alias in Order By Clause but unable to use it in WHERE CLAUSE. PLS...
3
by: Xiangliang Meng | last post by:
Hi, all. In 1998, I graduated from Computer Science Dept. in a university in China. Since then, I've been using C Language for almost 6 years. Although I'm using C++ in my current job, I'm also...
7
by: Britney | last post by:
Original code: this.oleDbSelectCommand1.CommandText = "SELECT TOP 100 user_id, password, nick_name, sex, age, has_picture, city, state, " + "country FROM dbo.users WHERE (has_picture = ?) AND (sex...
5
by: comp.lang.php | last post by:
if ($willLimitByDB) $sql = preg_replace('/#(+)#/i', '$$1', $sql); This does not give me the results I want, instead of the value of $where in $sql, I literally get '$where' instead. How do I...
5
by: John | last post by:
I just cannot manage to perform a SELECT query with NULL parameter... My CATEGORY table does have one row where TCATEGORYPARENTID is null (real DB null value). TCATEGORYID and TCATEGORYPARENTID...
0
NeoPa
by: NeoPa | last post by:
Background Whenever code is used there must be a way to differentiate the actual code (which should be interpreted directly) with literal strings which should be interpreted as data. Numbers don't...
1
by: not_a_commie | last post by:
I was hoping for increased functionality with the where clause in C# 3.0. Using the new keyword 'var' would really allow us to take nice advantage of these. Specifically: 1. I want to limit it...
9
by: Emin | last post by:
Dear Experts, I have a fairly simple query in which adding a where clause slows things down by at least a factor of 100. The following is the slow version of the query ...
8
by: chrisdavis | last post by:
I'm trying to filter by query or put those values in a distinct query in a where clause in some sort of list that it goes through but NOT at the same time. Example: ROW1 ROW2 ROW3 ROW4 ,...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.