Hi MoDD,
From on your description, you have compiled some *.cs files to *.netmodule files and want to deploy these files in ClickOnce.
Based on my understanding, we can add these .netmodule files like common output files into our project and deploy them. These are the steps:
1. Right click the project and click Add->Existing Item menu to show the item adding dialog.
2. Select the .netmodule files and click OK to add them to our project.
3. Right click all the .netmodule files to show the properties dialog.
4. Set Build Action property to Content and set Copy to Output Directory property to Copy always.
5. Rebuild the project, the files would be copied to the main output directory.
6. On the properties dialog of the project, select Publish tab.
7. Click Application Files button to show the Application Files dialog.
8. We would see the .netmodule files on the dialog. We can change the Hash to Include/Exclude to include/exclude a file in the publish files.
You can get more information about ClickOnce from:
http://msdn.microsoft.com/en-us/library/wh45kb66.aspx.
Let me know if this does not help.
Aland Li
Please mark the replies as answers if they help and unmark if they don't. This can be beneficial to other community members reading the thread.