CalculateSum.csproj
上传用户:linger1010
上传日期:2008-12-08
资源大小:561k
文件大小:4k
源码类别:

Windows Mobile

开发平台:

C#

  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2.   <PropertyGroup>
  3.     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  4.     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  5.     <ProductVersion>8.0.50727</ProductVersion>
  6.     <SchemaVersion>2.0</SchemaVersion>
  7.     <ProjectGuid>{C1FB64BB-0EC0-4C2A-B898-CBC0639612F2}</ProjectGuid>
  8.     <OutputType>WinExe</OutputType>
  9.     <AppDesignerFolder>Properties</AppDesignerFolder>
  10.     <RootNamespace>CalculateSum</RootNamespace>
  11.     <AssemblyName>CalculateSum</AssemblyName>
  12.     <ProjectTypeGuids>{4D628B5B-2FBC-4AA6-8C16-197242AEB884};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  13.     <PlatformFamilyName>PocketPC</PlatformFamilyName>
  14.     <PlatformID>4118C335-430C-497f-BE48-11C3316B135E</PlatformID>
  15.     <OSVersion>5.01</OSVersion>
  16.     <DeployDirSuffix>CalculateSum</DeployDirSuffix>
  17.     <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  18.     <FormFactorID>
  19.     </FormFactorID>
  20.   </PropertyGroup>
  21.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  22.     <DebugSymbols>true</DebugSymbols>
  23.     <DebugType>full</DebugType>
  24.     <Optimize>false</Optimize>
  25.     <OutputPath>binDebug</OutputPath>
  26.     <DefineConstants>DEBUG;TRACE;$(PlatformFamilyName)</DefineConstants>
  27.     <NoStdLib>true</NoStdLib>
  28.     <NoConfig>true</NoConfig>
  29.     <ErrorReport>prompt</ErrorReport>
  30.     <FileAlignment>512</FileAlignment>
  31.     <WarningLevel>4</WarningLevel>
  32.     <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
  33.   </PropertyGroup>
  34.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  35.     <DebugType>pdbonly</DebugType>
  36.     <Optimize>true</Optimize>
  37.     <OutputPath>binRelease</OutputPath>
  38.     <DefineConstants>TRACE;$(PlatformFamilyName)</DefineConstants>
  39.     <NoStdLib>true</NoStdLib>
  40.     <NoConfig>true</NoConfig>
  41.     <ErrorReport>prompt</ErrorReport>
  42.     <FileAlignment>512</FileAlignment>
  43.     <WarningLevel>4</WarningLevel>
  44.     <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
  45.   </PropertyGroup>
  46.   <ItemGroup>
  47.     <Reference Include="Microsoft.WindowsCE.Forms" />
  48.     <Reference Include="mscorlib" />
  49.     <Reference Include="System" />
  50.     <Reference Include="System.Data" />
  51.     <Reference Include="System.Drawing" />
  52.     <Reference Include="System.Windows.Forms" />
  53.     <Reference Include="System.Xml" />
  54.   </ItemGroup>
  55.   <ItemGroup>
  56.     <Compile Include="MainForm.cs">
  57.       <SubType>Form</SubType>
  58.     </Compile>
  59.     <Compile Include="MainForm.Designer.cs">
  60.       <DependentUpon>MainForm.cs</DependentUpon>
  61.     </Compile>
  62.     <Compile Include="Program.cs" />
  63.     <Compile Include="PropertiesAssemblyInfo.cs" />
  64.     <EmbeddedResource Include="MainForm.resx">
  65.       <SubType>Designer</SubType>
  66.       <DependentUpon>MainForm.cs</DependentUpon>
  67.     </EmbeddedResource>
  68.     <EmbeddedResource Include="PropertiesResources.resx">
  69.       <Generator>ResXFileCodeGenerator</Generator>
  70.       <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  71.       <SubType>Designer</SubType>
  72.     </EmbeddedResource>
  73.     <Compile Include="PropertiesResources.Designer.cs">
  74.       <AutoGen>True</AutoGen>
  75.       <DependentUpon>Resources.resx</DependentUpon>
  76.     </Compile>
  77.   </ItemGroup>
  78.   <Import Condition="'$(TargetFrameworkVersion)' == 'v1.0'" Project="$(MSBuildBinPath)Microsoft.CompactFramework.CSharp.v1.targets" />
  79.   <Import Condition="'$(TargetFrameworkVersion)' == 'v2.0'" Project="$(MSBuildBinPath)Microsoft.CompactFramework.CSharp.targets" />
  80.   <ProjectExtensions>
  81.     <VisualStudio>
  82.       <FlavorProperties GUID="{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}">
  83.         <HostingProcess disable="1" />
  84.       </FlavorProperties>
  85.     </VisualStudio>
  86.   </ProjectExtensions>
  87.   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
  88.        Other similar extension points exist, see Microsoft.Common.targets.
  89.   <Target Name="BeforeBuild">
  90.   </Target>
  91.   <Target Name="AfterBuild">
  92.   </Target>
  93.   -->
  94. </Project>