HostingNetworkingTest.csproj 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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>{9B1AD517-2E3F-411A-8A98-8B8452BC0424}</ProjectGuid>
  10. <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
  11. <OutputType>Library</OutputType>
  12. <AppDesignerFolder>Properties</AppDesignerFolder>
  13. <RootNamespace>HNT</RootNamespace>
  14. <AssemblyName>HNT</AssemblyName>
  15. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  16. <UseIISExpress>true</UseIISExpress>
  17. <Use64BitIISExpress />
  18. <IISExpressSSLPort>44356</IISExpressSSLPort>
  19. <IISExpressAnonymousAuthentication>enabled</IISExpressAnonymousAuthentication>
  20. <IISExpressWindowsAuthentication>disabled</IISExpressWindowsAuthentication>
  21. <IISExpressUseClassicPipelineMode>false</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="System" />
  46. <Reference Include="System.Configuration" />
  47. <Reference Include="System.Net.Http" />
  48. <Reference Include="System.Web" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Content Include="Web.config" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <None Include="Properties\PublishProfiles\FolderProfile.pubxml" />
  55. <None Include="Web.Debug.config">
  56. <DependentUpon>Web.config</DependentUpon>
  57. </None>
  58. <None Include="Web.Release.config">
  59. <DependentUpon>Web.config</DependentUpon>
  60. </None>
  61. </ItemGroup>
  62. <ItemGroup />
  63. <ItemGroup>
  64. <Compile Include="MainModule.cs" />
  65. </ItemGroup>
  66. <PropertyGroup>
  67. <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
  68. <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
  69. </PropertyGroup>
  70. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  71. <Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
  72. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
  73. <ProjectExtensions>
  74. <VisualStudio>
  75. <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
  76. <WebProjectProperties>
  77. <UseIIS>True</UseIIS>
  78. <AutoAssignPort>True</AutoAssignPort>
  79. <DevelopmentServerPort>57446</DevelopmentServerPort>
  80. <DevelopmentServerVPath>/</DevelopmentServerVPath>
  81. <IISUrl>http://localhost:57400/</IISUrl>
  82. <NTLMAuthentication>False</NTLMAuthentication>
  83. <UseCustomServer>False</UseCustomServer>
  84. <CustomServerUrl>
  85. </CustomServerUrl>
  86. <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
  87. </WebProjectProperties>
  88. </FlavorProperties>
  89. </VisualStudio>
  90. </ProjectExtensions>
  91. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  92. Other similar extension points exist, see Microsoft.Common.targets.
  93. <Target Name="BeforeBuild">
  94. </Target>
  95. <Target Name="AfterBuild">
  96. </Target>
  97. -->
  98. </Project>