Migrating from 1.1 to 2.0

  • Thread starter Thread starter kevinmenezes
  • Start date Start date
K

kevinmenezes

I'm having a problem migrating a .net compact framework solution from
v1.1 to 2.0. I used the VS 2005 wizard,
and the migration seemed to go well. Ofcourse, I got a ton of warnings
for implicit types, and other things, but those are minor.

The major issue I'm having is, I cannot seem to add a new reference to
mscorlib.dll. I need to use the Microsoft.Win32 namespace. So when I
add the reference to mscorlib.dll, no errors are generated, but I
cannot use the above namespace in my code. It will not build saying
Win32 is not recognized.

Any help would be greatly appreciated.

Thanks.
 
The mscorlib.ddl is automatically referenced in a .Net 2.0 project. You
don't need to (and can't) add a reference to it.

--
HTH,

Kevin Spencer
Microsoft MVP
Software Composer
http://unclechutney.blogspot.com

In case of Minimalism, break Philip Glass.
 
Back
Top