Changeset 469 for TFP-WebServer/WebServer
- Timestamp:
- Aug 19, 2023, 9:44:10 PM (15 months ago)
- Location:
- TFP-WebServer/WebServer
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TFP-WebServer/WebServer/ModInfo.xml
r468 r469 5 5 <Description value="Integrated Webserver for the Web Dashboard and server APIs" /> 6 6 <Author value="The Fun Pimps LLC" /> 7 <Version value="21.1.16. 3" />7 <Version value="21.1.16.4" /> 8 8 <Website value="" /> 9 9 </xml> -
TFP-WebServer/WebServer/WebServer.csproj
r463 r469 33 33 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 34 34 <OutputPath>..\bin\Mods\TFP_WebServer\</OutputPath> 35 <DebugType> full</DebugType>35 <DebugType>portable</DebugType> 36 36 <DebugSymbols>true</DebugSymbols> 37 37 </PropertyGroup> … … 40 40 <DefineConstants>ENABLE_PROFILER</DefineConstants> 41 41 <DebugSymbols>true</DebugSymbols> 42 <DebugType> full</DebugType>42 <DebugType>portable</DebugType> 43 43 </PropertyGroup> 44 44 <ItemGroup> -
TFP-WebServer/WebServer/src/Web.cs
r459 r469 3 3 using System.IO; 4 4 using System.Net.Sockets; 5 using System.Text; 5 6 using SpaceWizards.HttpListener; 6 7 using UnityEngine; … … 235 236 } 236 237 238 request.ContentEncoding = Encoding.UTF8; 237 239 RequestContext context = new RequestContext (requestPath, request, response, conn, permissionLevel); 238 240
Note:
See TracChangeset
for help on using the changeset viewer.