I recently upgrade my machine to XP 64 bit and also made some code changes to our software and when I'm doing new XmlSerializer(valueType)
, where valueType
is a type that is using DirectoryItem
, I'm getting the following error:
Unable to generate a temporary class (result=1). error CS0012: The type 'XYZ.Blob.DirectoryItem' is defined in an assembly that is not referenced. You must add a reference to assembly 'XYZ.Services.Blob, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'.
I really can't see why it shows this error. The dll is in the src folder and the exact same application is running with no issue on the same machine (the previous version).
If you have any idea how can I find what it gives this error that would be great.