Mixing projects in C ++ and C # in VS Express 2010

I am working on a hobby project, which is a parsing library written in direct C. I have a library and command line interface and it works on several Unix platforms. I also have a simple Cocoa application that uses the library for OS X. I would like to have a simple .net application for Windows. To do this, I need to combine the c project (library), the C ++ / cli project (.net wrapper) and the C # project (application) in one solution. Is this possible with Visual Studio Express? Or do I need to pay $ 800 for Visual Studio Pro?

Jorj

+4
source share
1 answer

Express releases are limited, so you cannot mix and match projects from one language inside the IDE to another language.

To test this, I simply tried to incorporate the VC ++ 2010 project into the VC # 2010 solution, and the GUI would prevent this. This also does not work.

Please note that you have nothing to stop doing all the work in the free versions and cross-reference the resulting binaries and libraries. You simply cannot create a single solution from a mixed set of projects.

+4
source

All Articles