I have a VC 6 project that I'm converting to .Net and I'm trying to use managed extensions. In the project properties, I've set the 'Use Managed Extensions' option to YES and added the following using directives to my stdafx.h file:
#using #using #using using namespace System;using namespace System::Windows::Forms;using namespace System::Text::RegularExpressions;
now when I try to compile the project, I get the following error:
cl : Command line error D2016 : '/RTC1' and '/clr' command-line options are incompatible
can anyone help?
bdiamond
#using #using #using using namespace System;using namespace System::Windows::Forms;using namespace System::Text::RegularExpressions;
now when I try to compile the project, I get the following error:
cl : Command line error D2016 : '/RTC1' and '/clr' command-line options are incompatible
can anyone help?
bdiamond