I am trying to add a new function to an old program that I wrote. However, trying to get the program to build VS, it returns an error message to me.
Error 1 Type "System.Xml.Serialization.IXmlSerializable" - this is defined in an assembly that is not referenced. You must add a reference to the assembly 'System.Xml, Version = 4.0.0.0, Culture = neutral, PublicKeyToken = b77a5c561934e089. C: \ Path \ To \ File \ summaryForm.cs 101 18 SerialController
However, the thing is at the top of the cs file, it has
using System; using System.ComponentModel; using System.Data; using System.Drawing; using System.Windows.Forms; using System.Xml;
Any ideas why they don't recognize the XML link?
source share