我一直在我的 Uni 笔记本电脑上用 C# 编程,方便地不允许任何安装。
Microsoft.Xna.Framework 3.0
无论如何,当我在搜索列表中发现参考文献时,我正在使用 ShaprDevelopPortable 进行项目。XNA-4.0
当我收到这些错误时,我立即尝试编译默认模板:
Found conflicts between different versions of the same dependent assembly. (MSB3247)
The type or namespace name 'Game' does not exist in the namespace 'Microsoft.Xna.Framework' (are you missing an assembly reference?) (CS0234)
The type or namespace name 'GraphicsDeviceManager' could not be found (are you missing a using directive or an assembly reference?) (CS0246)
The type or namespace name 'GameTime' could not be found (are you missing a using directive or an assembly reference?) (CS0246)
The type or namespace name 'GameTime' could not be found (are you missing a using directive or an assembly reference?) (CS0246)
现在我不知道 的功能GameTime
是否已从XNA-3.0
to中删除,XNA-4.0
但肯定Microsoft.Xna.Framework.Game
还会存在吗?
请注意,我使用的 SharpDevelop 版本是 4.2(它是可移植的),所以我想知道我收到此错误的原因是否是:
- Microsoft XNA 未正确安装
- 或 SharpDevelop 的问题
如果我的问题有任何不需要管理员权限或安装的解决方案。