문제

i got a project for mobile application which is created in Visual studio 2012,but when i am trying to run it in VS2013,it is showing some error in csproj.How to find which thing is missing like any SDK or service packs. CSPROJ file is

<?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>

and the error report is enter image description here

도움이 되었습니까?

해결책

Click the link in the error, which points you to a page called 'Visual Studio 2013 Compatibility', telling you:

Windows Mobile

This project can't be opened in Visual Studio 2013 because it doesn't support the project type.

So you should continue to use Visual Studio 2012 in order to develop your Windows Mobile app.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top