mirror of
git://opensimulator.org/git/opensim-libs
synced 2026-08-14 09:02:27 +00:00
155 lines
6.7 KiB
XML
155 lines
6.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProductVersion>9.0.30729</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{455E7D70-1C85-4D7F-9F01-DC801B8B8C34}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>HttpServer_OpenSim</RootNamespace>
|
|
<AssemblyName>HttpServer_OpenSim</AssemblyName>
|
|
<StartupObject>
|
|
</StartupObject>
|
|
<SignAssembly>true</SignAssembly>
|
|
<AssemblyOriginatorKeyFile>test.snk</AssemblyOriginatorKeyFile>
|
|
<FileUpgradeFlags>
|
|
</FileUpgradeFlags>
|
|
<UpgradeBackupLocation>
|
|
</UpgradeBackupLocation>
|
|
<OldToolsVersion>3.5</OldToolsVersion>
|
|
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
|
|
<TargetFrameworkProfile />
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<DocumentationFile>
|
|
</DocumentationFile>
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<DocumentationFile>
|
|
</DocumentationFile>
|
|
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Test|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<OutputPath>bin\Test\</OutputPath>
|
|
<DefineConstants>TRACE;DEBUG;TEST</DefineConstants>
|
|
<DocumentationFile>bin\Debug\HttpServer.XML</DocumentationFile>
|
|
<DebugType>full</DebugType>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Web" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Authentication\AuthenticationModule.cs" />
|
|
<Compile Include="Authentication\BasicAuthentication.cs" />
|
|
<Compile Include="Authentication\DigestAuthentication.cs" />
|
|
<Compile Include="Check.cs" />
|
|
<Compile Include="ClientAcceptedEventArgs.cs" />
|
|
<Compile Include="ComponentProvider.cs" />
|
|
<Compile Include="ContentTypes.cs" />
|
|
<Compile Include="ContextTimeoutManager.cs" />
|
|
<Compile Include="ExceptionHandler.cs" />
|
|
<Compile Include="Exceptions\BadRequestException.cs" />
|
|
<Compile Include="Exceptions\ForbiddenException.cs" />
|
|
<Compile Include="Exceptions\HttpException.cs" />
|
|
<Compile Include="Exceptions\InternalServerException.cs" />
|
|
<Compile Include="Exceptions\NotFoundException.cs" />
|
|
<Compile Include="Exceptions\UnauthorizedException.cs" />
|
|
<Compile Include="FormDecoders\FormDecoderProvider.cs" />
|
|
<Compile Include="FormDecoders\HttpMultipart.cs" />
|
|
<Compile Include="FormDecoders\IFormDecoder.cs" />
|
|
<Compile Include="FormDecoders\MultipartDecoder.cs" />
|
|
<Compile Include="FormDecoders\UrlDecoder.cs" />
|
|
<Compile Include="FormDecoders\XmlDecoder.cs" />
|
|
<Compile Include="Helpers\FormHelper.cs" />
|
|
<Compile Include="Helpers\GetIdTitle.cs" />
|
|
<Compile Include="Helpers\Implementations\PrototypeImp.cs" />
|
|
<Compile Include="Helpers\JSHelper.cs" />
|
|
<Compile Include="Helpers\ObjectForm.cs" />
|
|
<Compile Include="Helpers\ResourceInfo.cs" />
|
|
<Compile Include="Helpers\ResourceManager.cs" />
|
|
<Compile Include="Helpers\WebHelper.cs" />
|
|
<Compile Include="Helpers\XmlHelper.cs" />
|
|
<Compile Include="HttpClientContext.cs" />
|
|
<Compile Include="HttpContextFactory.cs" />
|
|
<Compile Include="HttpFile.cs" />
|
|
<Compile Include="HttpForm.cs" />
|
|
<Compile Include="HttpHelper.cs" />
|
|
<Compile Include="HttpInput.cs" />
|
|
<Compile Include="HttpInputItem.cs" />
|
|
<Compile Include="HttpListener.cs" />
|
|
<Compile Include="HttpListenerBase.cs" />
|
|
<Compile Include="HttpModules\FileModule.cs" />
|
|
<Compile Include="HttpModules\HttpModule.cs" />
|
|
<Compile Include="HttpModules\HttpModuleExceptionEventArgs.cs" />
|
|
<Compile Include="HttpModules\ResourceFileModule.cs" />
|
|
<Compile Include="HttpModules\ReverseProxyModule.cs" />
|
|
<Compile Include="HttpModules\WebSiteModule.cs" />
|
|
<Compile Include="HttpParam.cs" />
|
|
<Compile Include="HttpRequest.cs" />
|
|
<Compile Include="HttpResponse.cs" />
|
|
<Compile Include="HttpServer.cs" />
|
|
<Compile Include="IComponentProvider.cs" />
|
|
<Compile Include="IHttpClientContext.cs" />
|
|
<Compile Include="IHttpContextHandler.cs" />
|
|
<Compile Include="IHttpRequest.cs" />
|
|
<Compile Include="IHttpRequestParser.cs" />
|
|
<Compile Include="IHttpResponse.cs" />
|
|
<Compile Include="ILogWriter.cs" />
|
|
<Compile Include="Method.cs" />
|
|
<Compile Include="Parser\BodyEventArgs.cs" />
|
|
<Compile Include="Parser\HeaderEventArgs.cs" />
|
|
<Compile Include="Parser\HttpRequestParser.cs" />
|
|
<Compile Include="Parser\RequestLineEventArgs.cs" />
|
|
<Compile Include="Parser\RequestParserFactory.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="RequestCookie.cs" />
|
|
<Compile Include="RequestCookies.cs" />
|
|
<Compile Include="RequestQueue.cs" />
|
|
<Compile Include="ResponseCookie.cs" />
|
|
<Compile Include="ResponseCookies.cs" />
|
|
<Compile Include="Rules\IRule.cs" />
|
|
<Compile Include="Rules\RedirectRule.cs" />
|
|
<Compile Include="Rules\RegexRedirectRule.cs" />
|
|
<Compile Include="Sessions\IHttpSession.cs" />
|
|
<Compile Include="Sessions\IHttpSessionStore.cs" />
|
|
<Compile Include="Sessions\MemorySession.cs" />
|
|
<Compile Include="Sessions\MemorySessionStore.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="httpserver.pfx" />
|
|
<None Include="test.snk" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|
<Target Name="BeforeBuild">
|
|
</Target>
|
|
<Target Name="AfterBuild">
|
|
</Target>
|
|
-->
|
|
</Project> |