source: binary-improvements2/MapRendering/WebAndMapRendering.csproj@ 387

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

Big refactoring in Web to pass around a Context instead of a bunch of individual arguments all the time

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>{A1847B5F-7BFC-4BCD-94AA-A6C9FB7E7C54}</ProjectGuid>
9 <OutputType>Library</OutputType>
10 <RootNamespace>MapRendering</RootNamespace>
11 <AssemblyName>MapRendering</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\Allocs_WebAndMapRendering\</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\Allocs_WebAndMapRendering\</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\Allocs_WebAndMapRendering\</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="AssemblyInfo.cs" />
82 <Compile Include="Commands\Exception.cs" />
83 <Compile Include="MapRendering\MapRendering.cs" />
84 <Compile Include="MapRendering\MapRenderBlockBuffer.cs" />
85 <Compile Include="MapRendering\Constants.cs" />
86 <Compile Include="Commands\RenderMap.cs" />
87 <Compile Include="Commands\EnableRendering.cs" />
88 <Compile Include="API.cs" />
89 <Compile Include="Web\API\AbsRestApi.cs" />
90 <Compile Include="Web\API\GetAnimalsLocation.cs" />
91 <Compile Include="Web\API\GetHostileLocation.cs" />
92 <Compile Include="Web\API\GetWebMods.cs" />
93 <Compile Include="Web\API\Markers.cs" />
94 <Compile Include="Web\API\Null.cs" />
95 <Compile Include="Web\Handlers\RewriteHandler.cs" />
96 <Compile Include="Web\RequestContext.cs" />
97 <Compile Include="Web\SSE\EventLog.cs" />
98 <Compile Include="Web\SSE\SseHandler.cs" />
99 <Compile Include="Web\SSE\EventBase.cs" />
100 <Compile Include="Web\Web.cs" />
101 <Compile Include="Web\MimeType.cs" />
102 <Compile Include="Web\API\GetPlayersOnline.cs" />
103 <Compile Include="Web\API\AbsWebAPI.cs" />
104 <Compile Include="Web\API\GetPlayersLocation.cs" />
105 <Compile Include="Web\API\GetPlayerInventory.cs" />
106 <Compile Include="Web\API\GetLandClaims.cs" />
107 <Compile Include="Commands\webstat.cs" />
108 <Compile Include="Web\API\GetStats.cs" />
109 <Compile Include="Web\WebConnection.cs" />
110 <Compile Include="Web\OpenID.cs" />
111 <Compile Include="Web\ConnectionHandler.cs" />
112 <Compile Include="Web\WebMod.cs" />
113 <Compile Include="Web\WebPermissions.cs" />
114 <Compile Include="Web\Handlers\ApiHandler.cs" />
115 <Compile Include="Web\Handlers\ItemIconHandler.cs" />
116 <Compile Include="Web\Handlers\AbsHandler.cs" />
117 <Compile Include="Web\Handlers\SimpleRedirectHandler.cs" />
118 <Compile Include="Web\Handlers\StaticHandler.cs" />
119 <Compile Include="Web\Handlers\SessionHandler.cs" />
120 <Compile Include="Web\API\ExecuteConsoleCommand.cs" />
121 <Compile Include="Commands\ReloadWebPermissions.cs" />
122 <Compile Include="Web\Handlers\UserStatusHandler.cs" />
123 <Compile Include="Commands\WebTokens.cs" />
124 <Compile Include="Commands\WebPermissionsCmd.cs" />
125 <Compile Include="Web\LogBuffer.cs" />
126 <Compile Include="Web\API\GetLog.cs" />
127 <Compile Include="Web\API\GetWebUIUpdates.cs" />
128 <Compile Include="Web\API\GetServerInfo.cs" />
129 <Compile Include="Web\API\GetPlayerList.cs" />
130 <Compile Include="Web\WebCommandResult.cs" />
131 <Compile Include="Web\API\GetAllowedCommands.cs" />
132 <Compile Include="Commands\EnableOpenIDDebug.cs" />
133 <Compile Include="Web\API\GetPlayerInventories.cs" />
134 <Compile Include="Web\WebUtils.cs" />
135 </ItemGroup>
136 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
137 <ItemGroup>
138 <ProjectReference Include="..\7dtd-server-fixes\7dtd-server-fixes.csproj">
139 <Project>{81DA7F87-1A66-4920-AADA-6EAF1971F8D0}</Project>
140 <Name>7dtd-server-fixes</Name>
141 <Private>False</Private>
142 </ProjectReference>
143 <ProjectReference Include="..\SpaceWizards.HttpListener\SpaceWizards.HttpListener.csproj">
144 <Project>{e273d042-57f9-4e2e-8268-5053527e5287}</Project>
145 <Name>SpaceWizards.HttpListener</Name>
146 </ProjectReference>
147 </ItemGroup>
148 <ItemGroup>
149 <None Include="ModInfo.xml">
150 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
151 </None>
152 <None Include="steam-intermediate.cer">
153 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
154 </None>
155 <None Include="steam-rootca.cer">
156 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
157 </None>
158 </ItemGroup>
159</Project>
Note: See TracBrowser for help on using the repository browser.