0

Is here any possibility to use

#using <System.dll>

with precompiled headers in visual studio 2005 in C++? Now I am gettin g error:

Error 10 fatal error C1190: managed targeted code requires a '/clr' option

1 Answers1

0

Error message tells you everything. To enable this directive you need to enable Common Language Runtime Support - you can find this option in properties of your project.

Also read this and this

mpiatek
  • 1,313
  • 15
  • 16