ln.http/ln.http.csproj

115 lines
5.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{CEEEEB41-3059-46A2-A871-2ADE22C013D9}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>ln.http</RootNamespace>
<AssemblyName>ln.http</AssemblyName>
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Security" />
<Reference Include="Mono.Security" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="exceptions\HttpException.cs" />
<Compile Include="exceptions\IllegalRequestException.cs" />
<Compile Include="exceptions\ResourceNotFoundException.cs" />
<Compile Include="HTTPServer.cs" />
<Compile Include="HttpReader.cs" />
<Compile Include="HttpRequest.cs" />
<Compile Include="HttpResponse.cs" />
<Compile Include="HttpStatusCodes.cs" />
<Compile Include="QueryStringParameters.cs" />
<Compile Include="HttpCookie.cs" />
<Compile Include="session\Session.cs" />
<Compile Include="session\SessionCache.cs" />
<Compile Include="HttpUser.cs" />
<Compile Include="AuthenticationProvider.cs" />
<Compile Include="client\HttpClient.cs" />
<Compile Include="client\HttpClientRequest.cs" />
<Compile Include="client\CookieContainer.cs" />
<Compile Include="client\HttpClientResponse.cs" />
<Compile Include="HttpHeaders.cs" />
<Compile Include="HttpHeader.cs" />
<Compile Include="websocket\WebSocket.cs" />
<Compile Include="websocket\WebSocketEventArgs.cs" />
<Compile Include="websocket\WebSocketFrame.cs" />
<Compile Include="HTTPServerConnection.cs" />
<Compile Include="connections\HttpConnection.cs" />
<Compile Include="connections\Connection.cs" />
<Compile Include="connections\HttpsConnection.cs" />
<Compile Include="cert\CertContainer.cs" />
<Compile Include="listener\HttpListener.cs" />
<Compile Include="listener\HttpsListener.cs" />
<Compile Include="listener\Listener.cs" />
<Compile Include="HttpRouter.cs" />
<Compile Include="IHTTPResource.cs" />
<Compile Include="router\VirtualHostRouter.cs" />
<Compile Include="IHttpRouter.cs" />
<Compile Include="message\MimeTypeMap.cs" />
<Compile Include="router\RouterTarget.cs" />
<Compile Include="router\SimpleRouter.cs" />
<Compile Include="router\StaticRouter.cs" />
<Compile Include="router\FileRouter.cs" />
<Compile Include="router\LoggingRouter.cs" />
<Compile Include="exceptions\MethodNotAllowedException.cs" />
<Compile Include="router\WebsocketRouter.cs" />
<Compile Include="exceptions\DisposeConnectionException.cs" />
<Compile Include="message\Message.cs" />
<Compile Include="message\Header.cs" />
<Compile Include="message\HeaderContainer.cs" />
<Compile Include="io\UnbufferedStreamreader.cs" />
<Compile Include="message\TokenReader.cs" />
<Compile Include="message\parser\MIME.cs" />
<Compile Include="message\parser\HTTP.cs" />
<Compile Include="exceptions\BadRequestException.cs" />
<Compile Include="exceptions\UnsupportedMediaTypeException.cs" />
<Compile Include="router\HttpRoutingContext.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="exceptions\" />
<Folder Include="session\" />
<Folder Include="client\" />
<Folder Include="websocket\" />
<Folder Include="connections\" />
<Folder Include="cert\" />
<Folder Include="listener\" />
<Folder Include="router\" />
<Folder Include="message\" />
<Folder Include="io\" />
<Folder Include="message\parser\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ln.logging\ln.logging.csproj">
<Project>{D471A566-9FB6-41B2-A777-3C32874ECD0E}</Project>
<Name>ln.logging</Name>
</ProjectReference>
<ProjectReference Include="..\ln.types\ln.types.csproj">
<Project>{8D9AB9A5-E513-4BA7-A450-534F6456BF28}</Project>
<Name>ln.types</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>