I am trying to publish an XNA game through the Visual Studio Publishing Tool. The game uses compiled and non-fed content. Basically, I have a layer loaded through XML serialization and a short video. These two files are essentially streams, so they do not compile. The publishing tool contains compiled content, but any links to relative paths are broken because CurrentDirectory for installed programs is installed in the AppData folder.
I know that XNA can now compile XML without having to write its own content processors, but I really don't want to go back to rewrite this. I suppose I can, if there is no other option, but this still does not fix the problem with the video.
Is there a way to set up a publishing tool so that I can do what I need to do? Customization or something else? Or do I need to use a more fully functional tool like NSIS?
source share