I have a VS2008 C# project that use a 3rd party executable. What is the best way to add this executable to the project , such that it will be released when publishing the project? As a resource?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want to use it’s public API, add it as a reference. If you don’t, it doesn’t really matter. You can just add it to you project by dragging it into the solution explorer and set it’s properties in the properties window. There you can select to publish it with the rest of the assemblies.