[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.webservices

Compile Error: System.Xml.Serialization.dll

Paul P

7/26/2003 5:44:00 AM

When I try to compile proxy code (in C#), why do I get the
following error:
"error CS0006: Metadata
file 'System.Xml.Serialization.dll' could not be found"??
2 Answers

Paul P

7/26/2003 12:25:00 PM

0

>-----Original Message-----
> When I try to compile proxy code (in C#), why do I get
> the following error:
> "error CS0006: Metadata
> file 'System.Xml.Serialization.dll' could not be
> found"??

I guess the question I should be asking is...

When I have the latest .NET Framework SDK, why don't I
have System.Xml.Serialization.dll?

....and how can I get it?

Paul

Dino Chiesa [MSFT]

7/28/2003 9:59:00 PM

0

In .NET Framework v1.1, the serialization classes are included in
System.Xml.dll.

Maybe you have proxy sourcecode that has been generated by an old .NET
runtime? Or maybe you just need to include -r System.XML.dll on your
csc.exe command line. The full path of the DLL is typically

C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.XML.dll

-Dino


"Paul P" <paul_p_usa@yahoo.com> wrote in message
news:05d301c35370$edc6d7e0$a601280a@phx.gbl...
> >-----Original Message-----
> > When I try to compile proxy code (in C#), why do I get
> > the following error:
> > "error CS0006: Metadata
> > file 'System.Xml.Serialization.dll' could not be
> > found"??
>
> I guess the question I should be asking is...
>
> When I have the latest .NET Framework SDK, why don't I
> have System.Xml.Serialization.dll?
>
> ...and how can I get it?
>
> Paul