I have an application with a few XML files that I want embedded in my main assembly.  Visual Studio.Net provides a "Build Action" property for files, which allows me to indicate that I want the file compiled as an embedded resource.  The problem is that Visual Studio uses the /linkres compiler option instead of the /res compiler option, resulting in my XML files being embedded in a satelite assembly rather than my main assembly.

So, my question is this:  <b>Is there a way to make Visual Studio use the /res option instead of /linkres?</b>