unresolved external when converting to VS2005 beta 2

I am trying to compile some code with VS2005 Beta 2 that has been working with VS2003. I'm trying to build a DLL and contains a mix of managed and unmanaged C++. The error I'm getting is the following:
Error 13 error LNK2001: unresolved external symbol "?.cctor@@$$FYMXXZ" (?.cctor@@$$FYMXXZ) AssemblyInfo.obj
Any suggestions for resolving this would be appreciated.
--Jeff
[397 byte] By [JeffWeinstein] at [2007-12-16]
# 1
I had a similar problem. How are you linking to the CRT? Make sure you include msvcmrt.lib and mscoree.lib in the list of .lib files.

Flavio.

Flap at 2007-8-21 > top of Msdn Tech,Visual C++,Visual C++ General...
# 2
Thanks, that solved my problem. I was linking with msvcrtd.lib instead of msvcmrt.lib.
--Jeff
JeffWeinstein at 2007-8-21 > top of Msdn Tech,Visual C++,Visual C++ General...