quick question, im just trying out VS2012 and trying to make a c++.net app but for the life of me i cant find the option anymore when making a new project.
In vs200
Yes, microsoft has removed the option, here is the response from microsoft (reference):
C++/CLI is a great solution for interop, but we do not recommend creating brand new UI applications using C++/CLI.
The workaround provided by the link is:
- Create an empty C++ solution with both 2012RC and MSVC2010 Express.
- Using 2010 Express, create a new WinForm App project inside the folder of the 2012RC empty solution. Close all saving.
- Using 2012RC and the "add existing project", add the 2010 Express-WinForm App project into the empty 2012RC solution.
- Right click on the project to convert it to 2012RC "format"
It works and it is simple! But I don’t know all the consequences.