PageRenderTime 46ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/CSFTPDownload/CSFTPDownload.csproj

#
MSBuild | 112 lines | 105 code | 0 blank | 7 comment | 0 complexity | 0fbce9943ae5073a70adbe47ee23e7fc MD5 | raw file
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProductVersion>9.0.30729</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{D1EB454E-5746-40B0-A350-C417F89B0797}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>CSFTPDownload</RootNamespace>
  12. <AssemblyName>CSFTPDownload</AssemblyName>
  13. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  17. <PlatformTarget>x86</PlatformTarget>
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>..\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  27. <PlatformTarget>x86</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>..\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  36. <DebugSymbols>true</DebugSymbols>
  37. <OutputPath>..\Debug\</OutputPath>
  38. <DefineConstants>DEBUG;TRACE</DefineConstants>
  39. <DebugType>full</DebugType>
  40. <PlatformTarget>AnyCPU</PlatformTarget>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
  43. <OutputPath>..\Release\</OutputPath>
  44. <DefineConstants>TRACE</DefineConstants>
  45. <Optimize>true</Optimize>
  46. <DebugType>pdbonly</DebugType>
  47. <PlatformTarget>AnyCPU</PlatformTarget>
  48. </PropertyGroup>
  49. <ItemGroup>
  50. <Reference Include="System" />
  51. <Reference Include="System.Core">
  52. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  53. </Reference>
  54. <Reference Include="System.Drawing" />
  55. <Reference Include="System.Windows.Forms" />
  56. </ItemGroup>
  57. <ItemGroup>
  58. <Compile Include="ErrorEventArgs.cs">
  59. <SubType>Code</SubType>
  60. </Compile>
  61. <Compile Include="FileDownloadCompletedEventArgs.cs">
  62. <SubType>Code</SubType>
  63. </Compile>
  64. <Compile Include="FTPClientManager.cs">
  65. <SubType>Code</SubType>
  66. </Compile>
  67. <Compile Include="FTPClientManagerStatus.cs">
  68. <SubType>Code</SubType>
  69. </Compile>
  70. <Compile Include="FTPDirectoryListingStyle.cs">
  71. <SubType>Code</SubType>
  72. </Compile>
  73. <Compile Include="FTPDownloadClient.cs">
  74. <SubType>Code</SubType>
  75. </Compile>
  76. <Compile Include="FTPFileSystem.cs">
  77. <SubType>Code</SubType>
  78. </Compile>
  79. <Compile Include="MainForm.cs">
  80. <SubType>Form</SubType>
  81. </Compile>
  82. <Compile Include="MainForm.Designer.cs">
  83. <DependentUpon>MainForm.cs</DependentUpon>
  84. </Compile>
  85. <Compile Include="NewMessageEventArg.cs" />
  86. <Compile Include="Program.cs" />
  87. <Compile Include="Properties\AssemblyInfo.cs" />
  88. <Compile Include="UICredentialsProvider.cs">
  89. <SubType>Form</SubType>
  90. </Compile>
  91. <Compile Include="UICredentialsProvider.Designer.cs">
  92. <DependentUpon>UICredentialsProvider.cs</DependentUpon>
  93. </Compile>
  94. <EmbeddedResource Include="MainForm.resx">
  95. <DependentUpon>MainForm.cs</DependentUpon>
  96. </EmbeddedResource>
  97. <EmbeddedResource Include="UICredentialsProvider.resx">
  98. <DependentUpon>UICredentialsProvider.cs</DependentUpon>
  99. </EmbeddedResource>
  100. </ItemGroup>
  101. <ItemGroup>
  102. <Content Include="Readme.txt" />
  103. </ItemGroup>
  104. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  105. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  106. Other similar extension points exist, see Microsoft.Common.targets.
  107. <Target Name="BeforeBuild">
  108. </Target>
  109. <Target Name="AfterBuild">
  110. </Target>
  111. -->
  112. </Project>