是否可以使用visual studio将XNA内容管道项目分成不同的解决方案?我有特定的理由让内容项目与主游戏项目分开。
答案 0 :(得分:1)
我认为这是可能的,但不是通过Visual Studio。您需要将以下内容添加到XNA项目的.csproj文件中:
<ProjectReference Include="..\PATH\TO\MY\CONTENTPROJ.contentproj">
<Name>OtherProj_Win32Content</Name>
<XnaReferenceType>Content</XnaReferenceType>
</ProjectReference>