I have a .Net 2.0 solution with several projects.
The solution contains MainProject which has, as a reference, HelperProject (C# Console Application).
MainProject occasionally uses the .exe created by HelperProject.
The problem that I'm having is that HelperProject contains a Content.xml file. The build-action is set to "Content" and Copy to Output Directory is set to "Always".
When I compile the application all the files show up in the debug directory, but when I go to publish MainProject, the content file for HelperProject doesn't make it to the end user.
Can anyone help me understand why this is happening?
And
What should I do to make content from HelperProject appear in the published version of MainProject?
Thanks,
-Z