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

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

Major refactoring/cleanup

File size: 7.3 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>{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>
38 <ItemGroup>
39 <Reference Include="Assembly-CSharp-firstpass, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
40 <HintPath>..\7dtd-binaries\Assembly-CSharp-firstpass.dll</HintPath>
41 <Private>False</Private>
42 </Reference>
43 <Reference Include="LogLibrary">
44 <HintPath>..\7dtd-binaries\LogLibrary.dll</HintPath>
45 <Private>False</Private>
46 </Reference>
47 <Reference Include="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
48 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
49 <Private>False</Private>
50 </Reference>
51 <Reference Include="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
52 <HintPath>..\7dtd-binaries\System.dll</HintPath>
53 <Private>False</Private>
54 </Reference>
55 <Reference Include="System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
56 <HintPath>..\7dtd-binaries\System.Xml.dll</HintPath>
57 <Private>False</Private>
58 </Reference>
59 <Reference Include="UnityEngine">
60 <HintPath>..\7dtd-binaries\UnityEngine.dll</HintPath>
61 <Private>False</Private>
62 </Reference>
63 <Reference Include="Assembly-CSharp">
64 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
65 <Private>False</Private>
66 </Reference>
67 <Reference Include="mscorlib">
68 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
69 <Private>False</Private>
70 </Reference>
71 <Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
72 <HintPath>..\7dtd-binaries\UnityEngine.CoreModule.dll</HintPath>
73 <Private>False</Private>
74 </Reference>
75 <Reference Include="UnityEngine.ImageConversionModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
76 <HintPath>..\7dtd-binaries\UnityEngine.ImageConversionModule.dll</HintPath>
77 <Private>False</Private>
78 </Reference>
79 </ItemGroup>
80 <ItemGroup>
81 <Compile Include="src\ModApi.cs" />
82 <Compile Include="src\UrlHandlers\ApiHandler.cs" />
83 <Compile Include="src\UrlHandlers\SseHandler.cs" />
84 <Compile Include="src\WebAPI\AbsRestApi.cs" />
85 <Compile Include="src\WebAPI\AbsWebAPI.cs" />
86 <Compile Include="src\WebAPI\ExecuteConsoleCommand.cs" />
87 <Compile Include="src\WebAPI\GetAllowedCommands.cs" />
88 <Compile Include="src\WebAPI\GetAnimalsLocation.cs" />
89 <Compile Include="src\WebAPI\GetHostileLocation.cs" />
90 <Compile Include="src\WebAPI\GetLandClaims.cs" />
91 <Compile Include="src\WebAPI\GetLog.cs" />
92 <Compile Include="src\WebAPI\GetPlayerInventories.cs" />
93 <Compile Include="src\WebAPI\GetPlayerInventory.cs" />
94 <Compile Include="src\WebAPI\GetPlayerList.cs" />
95 <Compile Include="src\WebAPI\GetPlayersLocation.cs" />
96 <Compile Include="src\WebAPI\GetPlayersOnline.cs" />
97 <Compile Include="src\WebAPI\GetServerInfo.cs" />
98 <Compile Include="src\WebAPI\GetStats.cs" />
99 <Compile Include="src\WebAPI\GetWebMods.cs" />
100 <Compile Include="src\WebAPI\GetWebUIUpdates.cs" />
101 <Compile Include="src\WebAPI\Null.cs" />
102 <Compile Include="src\AssemblyInfo.cs" />
103 <Compile Include="src\Commands\EnableOpenIDDebug.cs" />
104 <Compile Include="src\Commands\ReloadWebPermissions.cs" />
105 <Compile Include="src\Commands\WebPermissionsCmd.cs" />
106 <Compile Include="src\Commands\WebTokens.cs" />
107 <Compile Include="src\ConnectionHandler.cs" />
108 <Compile Include="src\UrlHandlers\AbsHandler.cs" />
109 <Compile Include="src\UrlHandlers\ItemIconHandler.cs" />
110 <Compile Include="src\UrlHandlers\RewriteHandler.cs" />
111 <Compile Include="src\UrlHandlers\SessionHandler.cs" />
112 <Compile Include="src\UrlHandlers\SimpleRedirectHandler.cs" />
113 <Compile Include="src\UrlHandlers\StaticHandler.cs" />
114 <Compile Include="src\UrlHandlers\UserStatusHandler.cs" />
115 <Compile Include="src\LogBuffer.cs" />
116 <Compile Include="src\MimeType.cs" />
117 <Compile Include="src\OpenID.cs" />
118 <Compile Include="src\RequestContext.cs" />
119 <Compile Include="src\SSE\AbsEvent.cs" />
120 <Compile Include="src\SSE\EventLog.cs" />
121 <Compile Include="src\Web.cs" />
122 <Compile Include="src\WebCommandResult.cs" />
123 <Compile Include="src\WebConnection.cs" />
124 <Compile Include="src\WebMod.cs" />
125 <Compile Include="src\WebPermissions.cs" />
126 <Compile Include="src\WebUtils.cs" />
127 </ItemGroup>
128 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
129 <ItemGroup>
130 <None Include="ModInfo.xml">
131 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
132 </None>
133 <None Include="steam-intermediate.cer">
134 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
135 </None>
136 <None Include="steam-rootca.cer">
137 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
138 </None>
139 </ItemGroup>
140 <ItemGroup>
141 <ProjectReference Include="..\7dtd-server-fixes\7dtd-server-fixes.csproj">
142 <Project>{81da7f87-1a66-4920-aada-6eaf1971f8d0}</Project>
143 <Name>7dtd-server-fixes</Name>
144 <Private>False</Private>
145 </ProjectReference>
146 <ProjectReference Include="..\MapRendering\MapRendering.csproj">
147 <Project>{a1847b5f-7bfc-4bcd-94aa-a6c9fb7e7c54}</Project>
148 <Name>MapRendering</Name>
149 <Private>False</Private>
150 </ProjectReference>
151 <ProjectReference Include="..\SpaceWizards.HttpListener\SpaceWizards.HttpListener.csproj">
152 <Project>{1c5368e1-a4cf-4580-86bb-dffb20ab682c}</Project>
153 <Name>SpaceWizards.HttpListener</Name>
154 <Private>False</Private>
155 </ProjectReference>
156 </ItemGroup>
157</Project>
Note: See TracBrowser for help on using the repository browser.