OutLookDemo.csproj
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:4k
源码类别:

Email客户端

开发平台:

Visual 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>{F99DAD39-E831-4B78-A826-4E1C2898E0D7}</ProjectGuid>
  8.     <OutputType>WinExe</OutputType>
  9.     <AppDesignerFolder>Properties</AppDesignerFolder>
  10.     <RootNamespace>OutLookDemo</RootNamespace>
  11.     <AssemblyName>OutLookDemo</AssemblyName>
  12.   </PropertyGroup>
  13.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14.     <DebugSymbols>true</DebugSymbols>
  15.     <DebugType>full</DebugType>
  16.     <Optimize>false</Optimize>
  17.     <OutputPath>binDebug</OutputPath>
  18.     <DefineConstants>DEBUG;TRACE</DefineConstants>
  19.     <ErrorReport>prompt</ErrorReport>
  20.     <WarningLevel>4</WarningLevel>
  21.   </PropertyGroup>
  22.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  23.     <DebugType>pdbonly</DebugType>
  24.     <Optimize>true</Optimize>
  25.     <OutputPath>binRelease</OutputPath>
  26.     <DefineConstants>TRACE</DefineConstants>
  27.     <ErrorReport>prompt</ErrorReport>
  28.     <WarningLevel>4</WarningLevel>
  29.   </PropertyGroup>
  30.   <ItemGroup>
  31.     <Reference Include="System" />
  32.     <Reference Include="System.Data" />
  33.     <Reference Include="System.Deployment" />
  34.     <Reference Include="System.Drawing" />
  35.     <Reference Include="System.Windows.Forms" />
  36.     <Reference Include="System.Xml" />
  37.   </ItemGroup>
  38.   <ItemGroup>
  39.     <Compile Include="Form1.cs">
  40.       <SubType>Form</SubType>
  41.     </Compile>
  42.     <Compile Include="Form1.Designer.cs">
  43.       <DependentUpon>Form1.cs</DependentUpon>
  44.     </Compile>
  45.     <Compile Include="Program.cs" />
  46.     <Compile Include="PropertiesAssemblyInfo.cs" />
  47.     <EmbeddedResource Include="Form1.resx">
  48.       <SubType>Designer</SubType>
  49.       <DependentUpon>Form1.cs</DependentUpon>
  50.     </EmbeddedResource>
  51.     <EmbeddedResource Include="PropertiesResources.resx">
  52.       <Generator>ResXFileCodeGenerator</Generator>
  53.       <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  54.       <SubType>Designer</SubType>
  55.     </EmbeddedResource>
  56.     <Compile Include="PropertiesResources.Designer.cs">
  57.       <AutoGen>True</AutoGen>
  58.       <DependentUpon>Resources.resx</DependentUpon>
  59.     </Compile>
  60.     <None Include="PropertiesSettings.settings">
  61.       <Generator>SettingsSingleFileGenerator</Generator>
  62.       <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  63.     </None>
  64.     <Compile Include="PropertiesSettings.Designer.cs">
  65.       <AutoGen>True</AutoGen>
  66.       <DependentUpon>Settings.settings</DependentUpon>
  67.       <DesignTimeSharedInput>True</DesignTimeSharedInput>
  68.     </Compile>
  69.   </ItemGroup>
  70.   <ItemGroup>
  71.     <Content Include="参考资料1.txt" />
  72.     <Content Include="参考资料使用说明.txt" />
  73.   </ItemGroup>
  74.   <ItemGroup>
  75.     <COMReference Include="Microsoft.Office.Core">
  76.       <Guid>{2DF8D04C-5BFA-101B-BDE5-00AA0044DE52}</Guid>
  77.       <VersionMajor>2</VersionMajor>
  78.       <VersionMinor>3</VersionMinor>
  79.       <Lcid>0</Lcid>
  80.       <WrapperTool>primary</WrapperTool>
  81.       <Isolated>False</Isolated>
  82.     </COMReference>
  83.     <COMReference Include="Outlook">
  84.       <Guid>{00062FFF-0000-0000-C000-000000000046}</Guid>
  85.       <VersionMajor>9</VersionMajor>
  86.       <VersionMinor>2</VersionMinor>
  87.       <Lcid>0</Lcid>
  88.       <WrapperTool>tlbimp</WrapperTool>
  89.       <Isolated>False</Isolated>
  90.     </COMReference>
  91.   </ItemGroup>
  92.   <Import Project="$(MSBuildBinPath)Microsoft.CSharp.targets" />
  93.   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
  94.        Other similar extension points exist, see Microsoft.Common.targets.
  95.   <Target Name="BeforeBuild">
  96.   </Target>
  97.   <Target Name="AfterBuild">
  98.   </Target>
  99.   -->
  100. </Project>