source: TFP-WebServer/SpaceWizards.HttpListener/SpaceWizards.HttpListener.csproj@ 453

Last change on this file since 453 was 453, checked in by alloc, 16 months ago

21.1.9 release, updated Sessions handler to be more flexible

File size: 6.6 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <PropertyGroup>
4 <Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6 <ProductVersion>8.0.30703</ProductVersion>
7 <SchemaVersion>2.0</SchemaVersion>
8 <ProjectGuid>{1C5368E1-A4CF-4580-86BB-DFFB20AB682C}</ProjectGuid>
9 <OutputType>Library</OutputType>
10 <RootNamespace>SpaceWizards.HttpListener</RootNamespace>
11 <AssemblyName>SpaceWizards.HttpListener</AssemblyName>
12 <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
13 <LangVersion>8</LangVersion>
14 <Nullable>enable</Nullable>
15 </PropertyGroup>
16 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
17 <DebugType>none</DebugType>
18 <Optimize>true</Optimize>
19 <OutputPath>..\bin\Mods\TFP_WebServer\</OutputPath>
20 <ErrorReport>prompt</ErrorReport>
21 <WarningLevel>4</WarningLevel>
22 <ConsolePause>false</ConsolePause>
23 <NoStdLib>true</NoStdLib>
24 <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
25 <DefineConstants>UNITY_NETFRAMEWORK</DefineConstants>
26 </PropertyGroup>
27 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_Profiler|AnyCPU' ">
28 <OutputPath>..\bin\Mods\TFP_WebServer\</OutputPath>
29 <DefineConstants>UNITY_NETFRAMEWORK;ENABLE_PROFILER</DefineConstants>
30 <Optimize>true</Optimize>
31 <WarningLevel>4</WarningLevel>
32 <NoStdLib>true</NoStdLib>
33 <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
34 </PropertyGroup>
35 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
36 <OutputPath>..\bin\Mods\TFP_WebServer\</OutputPath>
37 <DebugType>full</DebugType>
38 <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
39 <DefineConstants>UNITY_NETFRAMEWORK</DefineConstants>
40 <DebugSymbols>true</DebugSymbols>
41 </PropertyGroup>
42 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_Profiler|AnyCPU' ">
43 <OutputPath>..\bin\Mods\TFP_WebServer\</OutputPath>
44 <DefineConstants>UNITY_NETFRAMEWORK;ENABLE_PROFILER</DefineConstants>
45 <DebugSymbols>true</DebugSymbols>
46 <DebugType>full</DebugType>
47 <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
48 </PropertyGroup>
49 <ItemGroup>
50 <Compile Include="src\AssemblyInfo.cs" />
51 <Compile Include="src\SR.cs" />
52 <Compile Include="src\System\HexConverter.cs" />
53 <Compile Include="src\System\Net\AuthenticationSchemeSelector.cs" />
54 <Compile Include="src\System\Net\AuthenticationTypes.cs" />
55 <Compile Include="src\System\Net\BoundaryType.cs" />
56 <Compile Include="src\System\Net\CaseInsensitiveAscii.cs" />
57 <Compile Include="src\System\Net\CookieComparer.cs" />
58 <Compile Include="src\System\Net\CookieFields.cs" />
59 <Compile Include="src\System\Net\CookieParser.cs" />
60 <Compile Include="src\System\Net\EntitySendFormat.cs" />
61 <Compile Include="src\System\Net\ExceptionCheck.cs" />
62 <Compile Include="src\System\Net\HttpKnownHeaderNames.cs" />
63 <Compile Include="src\System\Net\HttpListener.cs" />
64 <Compile Include="src\System\Net\HttpListenerBasicIdentity.cs" />
65 <Compile Include="src\System\Net\HttpListenerContext.cs" />
66 <Compile Include="src\System\Net\HttpListenerException.cs" />
67 <Compile Include="src\System\Net\HttpListenerPrefixCollection.cs" />
68 <Compile Include="src\System\Net\HttpListenerRequest.cs" />
69 <Compile Include="src\System\Net\HttpListenerRequestUriBuilder.cs" />
70 <Compile Include="src\System\Net\HttpListenerResponse.cs" />
71 <Compile Include="src\System\Net\HttpRequestStream.cs" />
72 <Compile Include="src\System\Net\HttpResponseStream.cs" />
73 <Compile Include="src\System\Net\HttpStatusDescription.cs" />
74 <Compile Include="src\System\Net\LazyAsyncResult.cs" />
75 <Compile Include="src\System\Net\ListenerClientCertState.cs" />
76 <Compile Include="src\System\Net\Logging\NetEventSource.Common.cs" />
77 <Compile Include="src\System\Net\Managed\ChunkedInputStream.cs" />
78 <Compile Include="src\System\Net\Managed\ChunkStream.cs" />
79 <Compile Include="src\System\Net\Managed\HttpConnection.cs" />
80 <Compile Include="src\System\Net\Managed\HttpEndPointListener.cs" />
81 <Compile Include="src\System\Net\Managed\HttpEndPointManager.cs" />
82 <Compile Include="src\System\Net\Managed\HttpHeaderStrings.cs" />
83 <Compile Include="src\System\Net\Managed\HttpListener.Certificates.cs" />
84 <Compile Include="src\System\Net\Managed\HttpListener.Managed.cs" />
85 <Compile Include="src\System\Net\Managed\HttpListenerContext.Managed.cs" />
86 <Compile Include="src\System\Net\Managed\HttpListenerRequest.Managed.cs" />
87 <Compile Include="src\System\Net\Managed\HttpListenerResponse.Managed.cs" />
88 <Compile Include="src\System\Net\Managed\HttpListenerTimeoutManager.Managed.cs" />
89 <Compile Include="src\System\Net\Managed\HttpRequestStream.Managed.cs" />
90 <Compile Include="src\System\Net\Managed\HttpResponseStream.Managed.cs" />
91 <Compile Include="src\System\Net\Managed\HttpStreamAsyncResult.cs" />
92 <Compile Include="src\System\Net\Managed\ListenerAsyncResult.Managed.cs" />
93 <Compile Include="src\System\Net\Managed\ListenerPrefix.cs" />
94 <Compile Include="src\System\Net\Managed\WebSockets\HttpWebSocket.Managed.cs" />
95 <Compile Include="src\System\Net\NetEventSource.HttpListener.cs" />
96 <Compile Include="src\System\Net\ServiceNameStore.cs" />
97 <Compile Include="src\System\Net\StreamHelper.cs" />
98 <Compile Include="src\System\Net\UriScheme.cs" />
99 <Compile Include="src\System\Net\WebHeaderEncoding.cs" />
100 <Compile Include="src\System\Net\WebSockets\HttpListenerWebSocketContext.cs" />
101 <Compile Include="src\System\Net\WebSockets\HttpWebSocket.cs" />
102 <Compile Include="src\System\Net\WebSockets\WebSocketValidate.cs" />
103 <Compile Include="src\System\Net\Windows\CookieExtensions.cs" />
104 <Compile Include="src\System\StringExtensions.cs" />
105 <Compile Include="src\System\Threading\Tasks\TaskToApm.cs" />
106 </ItemGroup>
107 <ItemGroup>
108 <Reference Include="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
109 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
110 <Private>False</Private>
111 </Reference>
112 <Reference Include="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
113 <HintPath>..\7dtd-binaries\System.dll</HintPath>
114 <Private>False</Private>
115 </Reference>
116 </ItemGroup>
117 <ItemGroup>
118 <Content Include="SpaceWizards.HttpListener-LICENSE.TXT">
119 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
120 </Content>
121 </ItemGroup>
122 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
123</Project>
Note: See TracBrowser for help on using the repository browser.