0

我有一个在 Visual Studio 2012 中创建的移动应用程序项目,但是当我尝试在 VS2013 中运行它时,它在 csproj 中显示一些错误。如何像任何 SDK 或服务包一样找到缺少的东西。CSPROJ 文件是

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
    <CurrentDeployCmdId>256</CurrentDeployCmdId>
    <CurrentDeployID>3B750D6D-6343-41bd-8FD5-18F53DF36A6F</CurrentDeployID>
  </PropertyGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
    <CurrentDeployCmdId>256</CurrentDeployCmdId>
    <CurrentDeployID>3B750D6D-6343-41bd-8FD5-18F53DF36A6F</CurrentDeployID>
  </PropertyGroup>
  <PropertyGroup>
    <ProjectView>ProjectFiles</ProjectView>
  </PropertyGroup>
  <ProjectExtensions>
    <VisualStudio>
      <FlavorProperties GUID="{C089C8C0-30E0-4E22-80C0-CE093F111A43}">
        <SilverlightMobileCSProjectFlavor>
          <FullDeploy>False</FullDeploy>
          <DebuggerType>Managed</DebuggerType>
          <DebuggerAgentType>Managed</DebuggerAgentType>
          <Tombstone>False</Tombstone>
        </SilverlightMobileCSProjectFlavor>
      </FlavorProperties>
    </VisualStudio>
  </ProjectExtensions>
</Project>

错误报告是 在此处输入图像描述

4

1 回答 1

0

单击错误中的链接,它将指向一个名为“Visual Studio 2013 Compatibility”的页面,告诉您:

视窗手机

此项目无法在 Visual Studio 2013 中打开,因为它不支持该项目类型。

因此,您应该继续使用 Visual Studio 2012 来开发您的 Windows Mobile 应用程序。

于 2014-02-19T16:49:20.963 回答