PageRenderTime 46ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/Visual Studio 2008/CSWebBrowserWithProxy/CSWebBrowserWithProxy.csproj

#
MSBuild | 95 lines | 88 code | 0 blank | 7 comment | 0 complexity | a6bbb12a43ef02f9439284cfc65e2f3f 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>{0CAA5988-99C1-4385-8949-087D708AAEE3}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>CSWebBrowserWithProxy</RootNamespace>
  12. <AssemblyName>CSWebBrowserWithProxy</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.Xml.Linq" />
  52. <Reference Include="System.Drawing" />
  53. <Reference Include="System.Windows.Forms" />
  54. <Reference Include="System.Xml" />
  55. </ItemGroup>
  56. <ItemGroup>
  57. <Compile Include="InternetProxy.cs" />
  58. <Compile Include="INTERNET_OPEN_TYPE.cs" />
  59. <Compile Include="INTERNET_OPTION.cs" />
  60. <Compile Include="INTERNET_PER_CONN_OPTION.cs" />
  61. <Compile Include="INTERNET_PER_CONN_OPTION_LIST.cs" />
  62. <Compile Include="MainForm.cs">
  63. <SubType>Form</SubType>
  64. </Compile>
  65. <Compile Include="MainForm.Designer.cs">
  66. <DependentUpon>MainForm.cs</DependentUpon>
  67. </Compile>
  68. <Compile Include="NativeMethods.cs" />
  69. <Compile Include="Program.cs" />
  70. <Compile Include="Properties\AssemblyInfo.cs" />
  71. <Compile Include="WebBrowserWithProxy.cs">
  72. <SubType>Component</SubType>
  73. </Compile>
  74. <Compile Include="WinINet.cs" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <Content Include="ProxyList.xml">
  78. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  79. </Content>
  80. <Content Include="Readme.txt" />
  81. </ItemGroup>
  82. <ItemGroup>
  83. <EmbeddedResource Include="MainForm.resx">
  84. <DependentUpon>MainForm.cs</DependentUpon>
  85. </EmbeddedResource>
  86. </ItemGroup>
  87. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  88. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  89. Other similar extension points exist, see Microsoft.Common.targets.
  90. <Target Name="BeforeBuild">
  91. </Target>
  92. <Target Name="AfterBuild">
  93. </Target>
  94. -->
  95. </Project>