source: binary-improvements2/WebServer/WebServer.csproj@ 392

Last change on this file since 392 was 392, checked in by alloc, 2 years ago

Added command to invalidate file caches
Added a debug+profiling build target

File size: 7.5 KB
RevLine 
[391]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>{01B5F981-B9FD-4364-8F9E-9127130D2542}</ProjectGuid>
9 <OutputType>Library</OutputType>
10 <RootNamespace>Webserver</RootNamespace>
11 <AssemblyName>WebServer</AssemblyName>
12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13 <LangVersion>8</LangVersion>
14 </PropertyGroup>
15 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
16 <DebugType>none</DebugType>
17 <Optimize>true</Optimize>
18 <OutputPath>..\bin\Mods\TFP_WebServer\</OutputPath>
19 <ErrorReport>prompt</ErrorReport>
20 <WarningLevel>4</WarningLevel>
21 <ConsolePause>false</ConsolePause>
22 <NoStdLib>true</NoStdLib>
23 </PropertyGroup>
24 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_Profiler|AnyCPU' ">
25 <OutputPath>..\bin\Mods\TFP_WebServer\</OutputPath>
26 <DefineConstants>ENABLE_PROFILER</DefineConstants>
27 <Optimize>true</Optimize>
28 <DebugSymbols>true</DebugSymbols>
29 <DebugType>full</DebugType>
30 <WarningLevel>4</WarningLevel>
31 <NoStdLib>true</NoStdLib>
32 </PropertyGroup>
33 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
34 <OutputPath>..\bin\Mods\TFP_WebServer\</OutputPath>
35 <DebugType>full</DebugType>
36 <DebugSymbols>true</DebugSymbols>
37 </PropertyGroup>
[392]38 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_Profiler|AnyCPU' ">
39 <OutputPath>..\bin\Mods\TFP_WebServer\</OutputPath>
40 <DefineConstants>ENABLE_PROFILER</DefineConstants>
41 <DebugSymbols>true</DebugSymbols>
42 <DebugType>full</DebugType>
43 </PropertyGroup>
[391]44 <ItemGroup>
45 <Reference Include="Assembly-CSharp-firstpass, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
46 <HintPath>..\7dtd-binaries\Assembly-CSharp-firstpass.dll</HintPath>
47 <Private>False</Private>
48 </Reference>
49 <Reference Include="LogLibrary">
50 <HintPath>..\7dtd-binaries\LogLibrary.dll</HintPath>
51 <Private>False</Private>
52 </Reference>
53 <Reference Include="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
54 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
55 <Private>False</Private>
56 </Reference>
57 <Reference Include="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
58 <HintPath>..\7dtd-binaries\System.dll</HintPath>
59 <Private>False</Private>
60 </Reference>
61 <Reference Include="System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
62 <HintPath>..\7dtd-binaries\System.Xml.dll</HintPath>
63 <Private>False</Private>
64 </Reference>
65 <Reference Include="UnityEngine">
66 <HintPath>..\7dtd-binaries\UnityEngine.dll</HintPath>
67 <Private>False</Private>
68 </Reference>
69 <Reference Include="Assembly-CSharp">
70 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
71 <Private>False</Private>
72 </Reference>
73 <Reference Include="mscorlib">
74 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
75 <Private>False</Private>
76 </Reference>
77 <Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
78 <HintPath>..\7dtd-binaries\UnityEngine.CoreModule.dll</HintPath>
79 <Private>False</Private>
80 </Reference>
81 <Reference Include="UnityEngine.ImageConversionModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
82 <HintPath>..\7dtd-binaries\UnityEngine.ImageConversionModule.dll</HintPath>
83 <Private>False</Private>
84 </Reference>
85 </ItemGroup>
86 <ItemGroup>
87 <Compile Include="src\ModApi.cs" />
88 <Compile Include="src\UrlHandlers\ApiHandler.cs" />
89 <Compile Include="src\UrlHandlers\SseHandler.cs" />
90 <Compile Include="src\WebAPI\AbsRestApi.cs" />
91 <Compile Include="src\WebAPI\AbsWebAPI.cs" />
92 <Compile Include="src\WebAPI\ExecuteConsoleCommand.cs" />
93 <Compile Include="src\WebAPI\GetAllowedCommands.cs" />
94 <Compile Include="src\WebAPI\GetAnimalsLocation.cs" />
95 <Compile Include="src\WebAPI\GetHostileLocation.cs" />
96 <Compile Include="src\WebAPI\GetLandClaims.cs" />
97 <Compile Include="src\WebAPI\GetLog.cs" />
98 <Compile Include="src\WebAPI\GetPlayerInventories.cs" />
99 <Compile Include="src\WebAPI\GetPlayerInventory.cs" />
100 <Compile Include="src\WebAPI\GetPlayerList.cs" />
101 <Compile Include="src\WebAPI\GetPlayersLocation.cs" />
102 <Compile Include="src\WebAPI\GetPlayersOnline.cs" />
103 <Compile Include="src\WebAPI\GetServerInfo.cs" />
104 <Compile Include="src\WebAPI\GetStats.cs" />
105 <Compile Include="src\WebAPI\GetWebMods.cs" />
106 <Compile Include="src\WebAPI\GetWebUIUpdates.cs" />
107 <Compile Include="src\WebAPI\Null.cs" />
108 <Compile Include="src\AssemblyInfo.cs" />
109 <Compile Include="src\Commands\EnableOpenIDDebug.cs" />
110 <Compile Include="src\Commands\ReloadWebPermissions.cs" />
111 <Compile Include="src\Commands\WebPermissionsCmd.cs" />
112 <Compile Include="src\Commands\WebTokens.cs" />
113 <Compile Include="src\ConnectionHandler.cs" />
114 <Compile Include="src\UrlHandlers\AbsHandler.cs" />
115 <Compile Include="src\UrlHandlers\ItemIconHandler.cs" />
116 <Compile Include="src\UrlHandlers\RewriteHandler.cs" />
117 <Compile Include="src\UrlHandlers\SessionHandler.cs" />
118 <Compile Include="src\UrlHandlers\SimpleRedirectHandler.cs" />
119 <Compile Include="src\UrlHandlers\StaticHandler.cs" />
120 <Compile Include="src\UrlHandlers\UserStatusHandler.cs" />
121 <Compile Include="src\LogBuffer.cs" />
122 <Compile Include="src\MimeType.cs" />
123 <Compile Include="src\OpenID.cs" />
124 <Compile Include="src\RequestContext.cs" />
125 <Compile Include="src\SSE\AbsEvent.cs" />
126 <Compile Include="src\SSE\EventLog.cs" />
127 <Compile Include="src\Web.cs" />
128 <Compile Include="src\WebCommandResult.cs" />
129 <Compile Include="src\WebConnection.cs" />
130 <Compile Include="src\WebMod.cs" />
131 <Compile Include="src\WebPermissions.cs" />
132 <Compile Include="src\WebUtils.cs" />
133 </ItemGroup>
134 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
135 <ItemGroup>
136 <None Include="ModInfo.xml">
137 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
138 </None>
139 <None Include="steam-intermediate.cer">
140 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
141 </None>
142 <None Include="steam-rootca.cer">
143 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
144 </None>
145 </ItemGroup>
146 <ItemGroup>
147 <ProjectReference Include="..\7dtd-server-fixes\7dtd-server-fixes.csproj">
148 <Project>{81da7f87-1a66-4920-aada-6eaf1971f8d0}</Project>
149 <Name>7dtd-server-fixes</Name>
150 <Private>False</Private>
151 </ProjectReference>
152 <ProjectReference Include="..\MapRendering\MapRendering.csproj">
153 <Project>{a1847b5f-7bfc-4bcd-94aa-a6c9fb7e7c54}</Project>
154 <Name>MapRendering</Name>
155 <Private>False</Private>
156 </ProjectReference>
157 <ProjectReference Include="..\SpaceWizards.HttpListener\SpaceWizards.HttpListener.csproj">
158 <Project>{1c5368e1-a4cf-4580-86bb-dffb20ab682c}</Project>
159 <Name>SpaceWizards.HttpListener</Name>
160 <Private>False</Private>
161 </ProjectReference>
162 </ItemGroup>
163</Project>
Note: See TracBrowser for help on using the repository browser.