最近入手了Surface RT,刷了windows10 arm32,作为MonoGame的测试机是个不错的选择。但有个问题只有UWP的项目才能在该系统上运行,并且只VS2015支持远程部署。所以捡起了Visual Studio 2015以及兼容性最好的MonoGame3.5.1

Visual Studio 2015安装MonoGame 3.5.1后,新建UWP项目出现如下错误:Microsoft.VisualStudio.WinRT.TemplateWizards.ApplicationInsights.Wizard’ which does not exsist in the assembly ‘Microsoft.VisualStudio.WinRT.TemplateWizards, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a

image

解决办法:

找到MonoGame项目模板的安装位置:C:\Users\【用户名】\Documents\Visual Studio 2015\Templates\ProjectTemplates\Visual C#\MonoGame

使用7zip等压缩软件打开【WindowsUniversal.zip】,从里面拖拽出【WindowsUniversal.vstemplate】

image

使用记事本打开拖拽出的【WindowsUniversal.vstemplate】,将下图红圈部分删除,保存。

image

然后将保存后的【WindowsUniversal.vstemplate】,拖拽进使用7zip等压缩软件打开的【WindowsUniversal.zip】中

image

点击【是】,即可!

image

 

 

 

重新打开VS2015,新建MonoGame的UWP项目即可!