WebGet.csproj 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>
  7. </ProductVersion>
  8. <SchemaVersion>2.0</SchemaVersion>
  9. <ProjectGuid>{E1B2C941-7602-4042-BA27-5081D89718E8}</ProjectGuid>
  10. <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
  11. <OutputType>Library</OutputType>
  12. <AppDesignerFolder>Properties</AppDesignerFolder>
  13. <RootNamespace>WebGet</RootNamespace>
  14. <AssemblyName>WebGet</AssemblyName>
  15. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  16. <UseIISExpress>true</UseIISExpress>
  17. <Use64BitIISExpress />
  18. <IISExpressSSLPort />
  19. <IISExpressAnonymousAuthentication />
  20. <IISExpressWindowsAuthentication />
  21. <IISExpressUseClassicPipelineMode />
  22. <UseGlobalApplicationHostFile />
  23. <NuGetPackageImportStamp>
  24. </NuGetPackageImportStamp>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  27. <DebugSymbols>true</DebugSymbols>
  28. <DebugType>full</DebugType>
  29. <Optimize>false</Optimize>
  30. <OutputPath>bin\</OutputPath>
  31. <DefineConstants>DEBUG;TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  36. <DebugSymbols>true</DebugSymbols>
  37. <DebugType>pdbonly</DebugType>
  38. <Optimize>true</Optimize>
  39. <OutputPath>bin\</OutputPath>
  40. <DefineConstants>TRACE</DefineConstants>
  41. <ErrorReport>prompt</ErrorReport>
  42. <WarningLevel>4</WarningLevel>
  43. </PropertyGroup>
  44. <ItemGroup>
  45. <Reference Include="Microsoft.CSharp" />
  46. <Reference Include="System.Net.Http" />
  47. <Reference Include="System.Web.DynamicData" />
  48. <Reference Include="System.Web.Entity" />
  49. <Reference Include="System.Web.ApplicationServices" />
  50. <Reference Include="System.ComponentModel.DataAnnotations" />
  51. <Reference Include="System" />
  52. <Reference Include="System.Data" />
  53. <Reference Include="System.Core" />
  54. <Reference Include="System.Data.DataSetExtensions" />
  55. <Reference Include="System.Web.Extensions" />
  56. <Reference Include="System.Xml.Linq" />
  57. <Reference Include="System.Drawing" />
  58. <Reference Include="System.Web" />
  59. <Reference Include="System.Xml" />
  60. <Reference Include="System.Configuration" />
  61. <Reference Include="System.Web.Services" />
  62. <Reference Include="System.EnterpriseServices" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <Content Include="Web.config" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <Compile Include="Properties\AssemblyInfo.cs" />
  69. <Compile Include="WebGetModule.cs" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <None Include="Web.Debug.config">
  73. <DependentUpon>Web.config</DependentUpon>
  74. </None>
  75. <None Include="Web.Release.config">
  76. <DependentUpon>Web.config</DependentUpon>
  77. </None>
  78. </ItemGroup>
  79. <PropertyGroup>
  80. <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
  81. <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
  82. </PropertyGroup>
  83. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  84. <Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
  85. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
  86. <ProjectExtensions>
  87. <VisualStudio>
  88. <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
  89. <WebProjectProperties>
  90. <UseIIS>True</UseIIS>
  91. <AutoAssignPort>True</AutoAssignPort>
  92. <DevelopmentServerPort>28153</DevelopmentServerPort>
  93. <DevelopmentServerVPath>/</DevelopmentServerVPath>
  94. <IISUrl>http://localhost:28153/</IISUrl>
  95. <NTLMAuthentication>False</NTLMAuthentication>
  96. <UseCustomServer>False</UseCustomServer>
  97. <CustomServerUrl>
  98. </CustomServerUrl>
  99. <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
  100. </WebProjectProperties>
  101. </FlavorProperties>
  102. </VisualStudio>
  103. </ProjectExtensions>
  104. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  105. Other similar extension points exist, see Microsoft.Common.targets.
  106. <Target Name="BeforeBuild">
  107. </Target>
  108. <Target Name="AfterBuild">
  109. </Target>
  110. -->
  111. </Project>