06SoketEmail.csproj
上传用户:jsz11269
上传日期:2017-01-14
资源大小:450k
文件大小:4k
源码类别:

Email服务器

开发平台:

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>{E9240289-69A6-4E77-A189-1E1BCA1CDDCE}</ProjectGuid>
  8.     <OutputType>WinExe</OutputType>
  9.     <AppDesignerFolder>Properties</AppDesignerFolder>
  10.     <RootNamespace>SoketEmail</RootNamespace>
  11.     <AssemblyName>SoketEmail</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="ExtendedRichTextBox, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  32.       <SpecificVersion>False</SpecificVersion>
  33.       <HintPath>..myWorkPadExtendedRichTextBox.dll</HintPath>
  34.     </Reference>
  35.     <Reference Include="System" />
  36.     <Reference Include="System.Data" />
  37.     <Reference Include="System.Deployment" />
  38.     <Reference Include="System.Drawing" />
  39.     <Reference Include="System.Windows.Forms" />
  40.     <Reference Include="System.Xml" />
  41.   </ItemGroup>
  42.   <ItemGroup>
  43.     <Compile Include="Form1.cs">
  44.       <SubType>Form</SubType>
  45.     </Compile>
  46.     <Compile Include="Form1.Designer.cs">
  47.       <DependentUpon>Form1.cs</DependentUpon>
  48.     </Compile>
  49.     <Compile Include="HtmlRichTextBox.cs">
  50.       <SubType>Component</SubType>
  51.     </Compile>
  52.     <Compile Include="Pop3.cs" />
  53.     <Compile Include="Program.cs" />
  54.     <Compile Include="PropertiesAssemblyInfo.cs" />
  55.     <EmbeddedResource Include="Form1.resx">
  56.       <SubType>Designer</SubType>
  57.       <DependentUpon>Form1.cs</DependentUpon>
  58.     </EmbeddedResource>
  59.     <EmbeddedResource Include="PropertiesResources.resx">
  60.       <Generator>ResXFileCodeGenerator</Generator>
  61.       <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  62.       <SubType>Designer</SubType>
  63.     </EmbeddedResource>
  64.     <Compile Include="PropertiesResources.Designer.cs">
  65.       <AutoGen>True</AutoGen>
  66.       <DependentUpon>Resources.resx</DependentUpon>
  67.       <DesignTime>True</DesignTime>
  68.     </Compile>
  69.     <None Include="PropertiesSettings.settings">
  70.       <Generator>SettingsSingleFileGenerator</Generator>
  71.       <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  72.     </None>
  73.     <Compile Include="PropertiesSettings.Designer.cs">
  74.       <AutoGen>True</AutoGen>
  75.       <DependentUpon>Settings.settings</DependentUpon>
  76.       <DesignTimeSharedInput>True</DesignTimeSharedInput>
  77.     </Compile>
  78.     <Compile Include="SMTP.cs" />
  79.   </ItemGroup>
  80.   <Import Project="$(MSBuildBinPath)Microsoft.CSharp.targets" />
  81.   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
  82.        Other similar extension points exist, see Microsoft.Common.targets.
  83.   <Target Name="BeforeBuild">
  84.   </Target>
  85.   <Target Name="AfterBuild">
  86.   </Target>
  87.   -->
  88. </Project>