WebSocketEcho.csproj 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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>{33AEF25B-1E70-4BD0-9B0F-3715E27D8C12}</ProjectGuid>
  10. <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
  11. <OutputType>Library</OutputType>
  12. <AppDesignerFolder>Properties</AppDesignerFolder>
  13. <RootNamespace>WebSocketEcho</RootNamespace>
  14. <AssemblyName>WebSocketEcho</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.Web.DynamicData" />
  47. <Reference Include="System.Web.Entity" />
  48. <Reference Include="System.Web.ApplicationServices" />
  49. <Reference Include="System.ComponentModel.DataAnnotations" />
  50. <Reference Include="System" />
  51. <Reference Include="System.Data" />
  52. <Reference Include="System.Core" />
  53. <Reference Include="System.Data.DataSetExtensions" />
  54. <Reference Include="System.Web.Extensions" />
  55. <Reference Include="System.Xml.Linq" />
  56. <Reference Include="System.Drawing" />
  57. <Reference Include="System.Web" />
  58. <Reference Include="System.Xml" />
  59. <Reference Include="System.Configuration" />
  60. <Reference Include="System.Web.Services" />
  61. <Reference Include="System.EnterpriseServices" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Content Include="Web.config" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Compile Include="Echo.ashx.cs">
  68. <DependentUpon>Echo.ashx</DependentUpon>
  69. </Compile>
  70. <Compile Include="Properties\AssemblyInfo.cs" />
  71. </ItemGroup>
  72. <ItemGroup>
  73. <Content Include="Echo.ashx" />
  74. <None Include="Web.Debug.config">
  75. <DependentUpon>Web.config</DependentUpon>
  76. </None>
  77. <None Include="Web.Release.config">
  78. <DependentUpon>Web.config</DependentUpon>
  79. </None>
  80. </ItemGroup>
  81. <PropertyGroup>
  82. <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
  83. <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
  84. </PropertyGroup>
  85. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  86. <Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
  87. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
  88. <ProjectExtensions>
  89. <VisualStudio>
  90. <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
  91. <WebProjectProperties>
  92. <UseIIS>True</UseIIS>
  93. <AutoAssignPort>True</AutoAssignPort>
  94. <DevelopmentServerPort>45003</DevelopmentServerPort>
  95. <DevelopmentServerVPath>/</DevelopmentServerVPath>
  96. <IISUrl>http://localhost:45003/</IISUrl>
  97. <NTLMAuthentication>False</NTLMAuthentication>
  98. <UseCustomServer>False</UseCustomServer>
  99. <CustomServerUrl>
  100. </CustomServerUrl>
  101. <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
  102. </WebProjectProperties>
  103. </FlavorProperties>
  104. </VisualStudio>
  105. </ProjectExtensions>
  106. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  107. Other similar extension points exist, see Microsoft.Common.targets.
  108. <Target Name="BeforeBuild">
  109. </Target>
  110. <Target Name="AfterBuild">
  111. </Target>
  112. -->
  113. </Project>