Hi,

lets say that i have A.DLL and B.DLL.

A.Dll hold reference to B.DLL.

if i changed the B.DLL should i recompile A.DLL in order to get the new
version ?

does the A.DLL will Work with the new version of B.DLL without recompile ?

how can i prevent this dependency ?

one more question,

i have some project which hold 1 vb file and 1 aspx file or other type of
file.

when i build the project it will build the vb and the other files to one dll
or it will build just the vb file ?


Best Regards ,

Tiraman :-)

Re: Reference DLL Question by Samuel

Samuel
Sun Jul 25 14:37:27 CDT 2004

Tiraman,

1. You should put both the A project and the B project in the same solution
and reference the B project from the A project. You can do this from the
"Projects" tabe on the Add Reference dialog after both projects are in the
same solution.

2. Both the vb and aspx file are built when you run the project or choose
the build/rebuild option.

-Sam Matzen


"Tiraman" <tiraman@netvision.net.il> wrote in message
news:uayWHdncEHA.2812@TK2MSFTNGP11.phx.gbl...
> Hi,
>
> lets say that i have A.DLL and B.DLL.
>
> A.Dll hold reference to B.DLL.
>
> if i changed the B.DLL should i recompile A.DLL in order to get the new
> version ?
>
> does the A.DLL will Work with the new version of B.DLL without recompile ?
>
> how can i prevent this dependency ?
>
> one more question,
>
> i have some project which hold 1 vb file and 1 aspx file or other type of
> file.
>
> when i build the project it will build the vb and the other files to one
dll
> or it will build just the vb file ?
>
>
> Best Regards ,
>
> Tiraman :-)
>
>



Re: Reference DLL Question by Tiraman

Tiraman
Sun Jul 25 16:50:36 CDT 2004

Hi,

Thanks for your explanation but i asked for some thing else :-)




"Samuel L Matzen" <smatzen@slm.com> wrote in message
news:elvSX7ncEHA.3044@TK2MSFTNGP10.phx.gbl...
> Tiraman,
>
> 1. You should put both the A project and the B project in the same
solution
> and reference the B project from the A project. You can do this from the
> "Projects" tabe on the Add Reference dialog after both projects are in the
> same solution.
>
> 2. Both the vb and aspx file are built when you run the project or choose
> the build/rebuild option.
>
> -Sam Matzen
>
>
> "Tiraman" <tiraman@netvision.net.il> wrote in message
> news:uayWHdncEHA.2812@TK2MSFTNGP11.phx.gbl...
> > Hi,
> >
> > lets say that i have A.DLL and B.DLL.
> >
> > A.Dll hold reference to B.DLL.
> >
> > if i changed the B.DLL should i recompile A.DLL in order to get the new
> > version ?
> >
> > does the A.DLL will Work with the new version of B.DLL without recompile
?
> >
> > how can i prevent this dependency ?
> >
> > one more question,
> >
> > i have some project which hold 1 vb file and 1 aspx file or other type
of
> > file.
> >
> > when i build the project it will build the vb and the other files to one
> dll
> > or it will build just the vb file ?
> >
> >
> > Best Regards ,
> >
> > Tiraman :-)
> >
> >
>
>



Re: Reference DLL Question by Marina

Marina
Mon Jul 26 10:30:23 CDT 2004

If the interface in B.dll changed, then of course the answer is yes.

Otherwise, simply copying B.dll into the application directory, should be
sufficient for the new version of B.dll to be used at run time.

"Tiraman" <tiraman@netvision.net.il> wrote in message
news:uayWHdncEHA.2812@TK2MSFTNGP11.phx.gbl...
> Hi,
>
> lets say that i have A.DLL and B.DLL.
>
> A.Dll hold reference to B.DLL.
>
> if i changed the B.DLL should i recompile A.DLL in order to get the new
> version ?
>
> does the A.DLL will Work with the new version of B.DLL without recompile ?
>
> how can i prevent this dependency ?
>
> one more question,
>
> i have some project which hold 1 vb file and 1 aspx file or other type of
> file.
>
> when i build the project it will build the vb and the other files to one
dll
> or it will build just the vb file ?
>
>
> Best Regards ,
>
> Tiraman :-)
>
>



Re: Reference DLL Question by Tiraman

Tiraman
Mon Jul 26 13:39:17 CDT 2004

Thanks !

"Marina" <someone@nospam.com> wrote in message
news:eJ9w5VycEHA.3988@tk2msftngp13.phx.gbl...
> If the interface in B.dll changed, then of course the answer is yes.
>
> Otherwise, simply copying B.dll into the application directory, should be
> sufficient for the new version of B.dll to be used at run time.
>
> "Tiraman" <tiraman@netvision.net.il> wrote in message
> news:uayWHdncEHA.2812@TK2MSFTNGP11.phx.gbl...
> > Hi,
> >
> > lets say that i have A.DLL and B.DLL.
> >
> > A.Dll hold reference to B.DLL.
> >
> > if i changed the B.DLL should i recompile A.DLL in order to get the new
> > version ?
> >
> > does the A.DLL will Work with the new version of B.DLL without recompile
?
> >
> > how can i prevent this dependency ?
> >
> > one more question,
> >
> > i have some project which hold 1 vb file and 1 aspx file or other type
of
> > file.
> >
> > when i build the project it will build the vb and the other files to one
> dll
> > or it will build just the vb file ?
> >
> >
> > Best Regards ,
> >
> > Tiraman :-)
> >
> >
>
>