Platform-Specific Content Projects
Describes how XNA Game Studio supports maintaining platform-specific game assets through the use of multiple content project folders within a game project.
A cross-platform solution in XNA Game Studio is composed of multiple game project folders, with one project for each platform. The projects are synchronized with each other such that adding or renaming a file in one project is automatically reflected in the other projects.
Content projects that are added to a game project follow the same synchronization rules. This means that adding a content project to one game project will automatically add the same content project to all other game projects in the XNA Game Studio solution. For each of the other projects, all references to XNA Framework assemblies will be appropriate for the project's platform.
It may be useful to maintain a content project that is exclusive to a game project, such as for game assets that are specifically meant for use on that project's platform. For example, you may wish to use high-resolution bitmaps for a project that will run on the Windows platform, but use low-resolution versions for the Zune project.
To create content projects that are not synchronized with other game projects, you must first add a content project to the needed game project, then remove the synchronized folders in the game projects where they are not needed.
To create an exclusive content project for a Windows game
This example procedure assumes that the XNA Game Studio solution contains three game projects, for Windows, Xbox 360 and Zune.
- In Solution Explorer, right-click the Windows game project node (for example, MyGame).
- Click Add, and then click New Content Project....
- In the Add New Content Project dialog box, enter the name for the new content project (for example, MyWindowsContent).
- In Solution Explorer, expand the Xbox 360 game project node (for example, Xbox 360 Copy of MyGame).
- Within the Xbox 360 game project, right-click the new content project (MyWindowsContent), and select Remove.
- In Solution Explorer, expand the Zune game project node (for example, Zune Copy of MyGame).
- Within the Zune game project, right-click the new content project (MyWindowsContent) and select Remove.
See Also
Adding Game Content Projects
Developing Cross-Platform Games