system.runtime.serialization assembly missing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can a 2.0 framework assembly like system.runtime.serialization be missing
from my machine?

How can I get it back?
Do I have to re-install the 2.0 framework? If so how?

tia
 
The namespace System.Runtime.Serialization is contained in the mscorlib.dll
assembly.
 
Hi Gabriele,
Thanks for the response.

This reference is coming from the netTiers generated entities project.
I'm trying to understand what netTiers is actually doing.

In the entitites project reference it shows system.runtime.serialzation with
the yellow warning. This creates 1660 build errors.

What action/s do I need to take to fix this and to understand the problem?

Have a great Thanks Giving :>)
 
I'm not familiar with .netTiers, but maybe all you need to do is add a
reference to the assembly.

Open your project, right-click the name of your project in the Solution
Explorer, and select "Add Reference...". In the .NET tab scroll down to
select System.Runtime.Serialization and click OK.
 
Back
Top