How to setup a project to import the compiled files of other projects

  • Thread starter Thread starter Anthony Nguyen
  • Start date Start date
A

Anthony Nguyen

Hi all,

I have a C# Project which would need to output of a C++ project. How
can I setup the C# project to automatically import the output of the
C++ project prior to debug or compilation ?

Cheers
Anthony
 
Hello, Anthony!

AN> I have a C# Project which would need to output of a C++ project. How
AN> can I setup the C# project to automatically import the output of the
AN> C++ project prior to debug or compilation ?

If you add reference to that output - you can do it with Add Reference dialog and select required output in Project tab

OTOH can set the dependency on that project and add PreBuildEvent on the C# project properties.

--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top