我正在尝试在vs2008中打开一个Windows智能设备项目,我收到以下错误“项目的应用程序未安装”。我认为这是由于没有安装sdk的正确版本。到目前为止我安装了:
我安装了以下.Net Compact Framework版本。 2.0和3.5
这是.proj文件的内容。
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://...msbuild/2003" ToolsVersion="3.5">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<OutputType>WinExe</OutputType>
<StartupObject>Sub Main</StartupObject>
<RootNamespace>abc</RootNamespace>
<AssemblyName>abc</AssemblyName>
<PlatformFamilyName>PocketPC</PlatformFamilyName>
<PlatformID>4118C335-430C-497f-BE48-11C3316B135E</PlatformID>
<OSVersion>5.1</OSVersion>
<MyType>WindowsForms</MyType>
<DeployDirSuffix>abc</DeployDirSuffix>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<OptionExplicit>On</OptionExplicit>
<OptionCompare>Binary</OptionCompare>
<OptionStrict>Off</OptionStrict>
<OptionInfer>On</OptionInfer>
<NativePlatformName>Windows Mobile 5.0 Pocket PC SDK</NativePlatformName>
<FormFactorID>
</FormFactorID>
<SccProjectName>SAK</SccProjectName>
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
感谢您的帮助。