2
0

SocketHttpListener.csproj 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{1D74413B-E7CF-455B-B021-F52BDF881542}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>SocketHttpListener</RootNamespace>
  11. <AssemblyName>SocketHttpListener</AssemblyName>
  12. <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="System" />
  35. <Reference Include="System.Core" />
  36. <Reference Include="System.Xml.Linq" />
  37. <Reference Include="System.Data.DataSetExtensions" />
  38. <Reference Include="Microsoft.CSharp" />
  39. <Reference Include="System.Data" />
  40. <Reference Include="System.Net.Http" />
  41. <Reference Include="System.Xml" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Compile Include="..\SharedVersion.cs">
  45. <Link>Properties\SharedVersion.cs</Link>
  46. </Compile>
  47. <Compile Include="ByteOrder.cs" />
  48. <Compile Include="CloseEventArgs.cs" />
  49. <Compile Include="CloseStatusCode.cs" />
  50. <Compile Include="CompressionMethod.cs" />
  51. <Compile Include="ErrorEventArgs.cs" />
  52. <Compile Include="Ext.cs" />
  53. <Compile Include="Fin.cs" />
  54. <Compile Include="HttpBase.cs" />
  55. <Compile Include="HttpResponse.cs" />
  56. <Compile Include="Mask.cs" />
  57. <Compile Include="MessageEventArgs.cs" />
  58. <Compile Include="Net\AuthenticationSchemeSelector.cs" />
  59. <Compile Include="Net\ChunkedInputStream.cs" />
  60. <Compile Include="Net\ChunkStream.cs" />
  61. <Compile Include="Net\CookieHelper.cs" />
  62. <Compile Include="Net\EndPointListener.cs" />
  63. <Compile Include="Net\EndPointManager.cs" />
  64. <Compile Include="Net\HttpConnection.cs" />
  65. <Compile Include="Net\HttpListener.cs" />
  66. <Compile Include="Net\HttpListenerBasicIdentity.cs" />
  67. <Compile Include="Net\HttpListenerContext.cs" />
  68. <Compile Include="Net\HttpListenerPrefixCollection.cs" />
  69. <Compile Include="Net\HttpListenerRequest.cs" />
  70. <Compile Include="Net\HttpListenerResponse.cs" />
  71. <Compile Include="Net\HttpRequestStream.cs" />
  72. <Compile Include="Net\HttpRequestStream.Managed.cs" />
  73. <Compile Include="Net\HttpResponseStream.cs" />
  74. <Compile Include="Net\HttpResponseStream.Managed.cs" />
  75. <Compile Include="Net\HttpStatusCode.cs" />
  76. <Compile Include="Net\HttpStreamAsyncResult.cs" />
  77. <Compile Include="Net\HttpVersion.cs" />
  78. <Compile Include="Net\ListenerPrefix.cs" />
  79. <Compile Include="Net\WebHeaderCollection.cs" />
  80. <Compile Include="Net\WebSockets\HttpListenerWebSocketContext.cs" />
  81. <Compile Include="Net\WebSockets\WebSocketContext.cs" />
  82. <Compile Include="Opcode.cs" />
  83. <Compile Include="PayloadData.cs" />
  84. <Compile Include="Primitives\ICertificate.cs" />
  85. <Compile Include="Primitives\IStreamFactory.cs" />
  86. <Compile Include="Primitives\ITextEncoding.cs" />
  87. <Compile Include="Properties\AssemblyInfo.cs" />
  88. <Compile Include="Rsv.cs" />
  89. <Compile Include="WebSocket.cs" />
  90. <Compile Include="WebSocketException.cs" />
  91. <Compile Include="WebSocketFrame.cs" />
  92. <Compile Include="WebSocketState.cs" />
  93. </ItemGroup>
  94. <ItemGroup>
  95. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  96. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  97. <Name>MediaBrowser.Common</Name>
  98. </ProjectReference>
  99. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  100. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  101. <Name>MediaBrowser.Model</Name>
  102. </ProjectReference>
  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>