source: binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj@ 208

Last change on this file since 208 was 208, checked in by alloc, 10 years ago

fixes

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)' == '' ">Debug</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6 <ProductVersion>10.0.0</ProductVersion>
7 <SchemaVersion>2.0</SchemaVersion>
8 <ProjectGuid>{81DA7F87-1A66-4920-AADA-6EAF1971F8D0}</ProjectGuid>
9 <OutputType>Library</OutputType>
10 <AssemblyName>7dtd-server-fixes</AssemblyName>
11 <RootNamespace>AllocsFixes</RootNamespace>
12 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
13 </PropertyGroup>
14 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
15 <DebugSymbols>true</DebugSymbols>
16 <DebugType>full</DebugType>
17 <Optimize>false</Optimize>
18 <OutputPath>..\bin\Debug</OutputPath>
19 <DefineConstants>DEBUG;</DefineConstants>
20 <ErrorReport>prompt</ErrorReport>
21 <WarningLevel>4</WarningLevel>
22 <ConsolePause>false</ConsolePause>
23 </PropertyGroup>
24 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25 <DebugType>none</DebugType>
26 <Optimize>true</Optimize>
27 <OutputPath>..\bin\Release</OutputPath>
28 <ErrorReport>prompt</ErrorReport>
29 <WarningLevel>4</WarningLevel>
30 <ConsolePause>false</ConsolePause>
31 </PropertyGroup>
32 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_Version|AnyCPU' ">
33 <DebugType>none</DebugType>
34 <Optimize>true</Optimize>
35 <OutputPath>..\bin\Release</OutputPath>
36 <ErrorReport>prompt</ErrorReport>
37 <WarningLevel>4</WarningLevel>
38 <CustomCommands>
39 <CustomCommands>
40 <Command type="AfterBuild" command="bash -c &quot;monodis --assembly ${TargetFile} | grep Version &gt; ${TargetDir}/${ProjectName}_version.txt&quot;" />
41 </CustomCommands>
42 </CustomCommands>
43 <ConsolePause>false</ConsolePause>
44 </PropertyGroup>
45 <ItemGroup>
46 <Reference Include="System" />
47 <Reference Include="UnityEngine">
48 <HintPath>..\7dtd-binaries\UnityEngine.dll</HintPath>
49 </Reference>
50 <Reference Include="Assembly-CSharp">
51 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
52 </Reference>
53 <Reference Include="EasyAntiCheat.Client">
54 <HintPath>..\7dtd-binaries\EasyAntiCheat.Client.dll</HintPath>
55 </Reference>
56 <Reference Include="EasyAntiCheat.Server">
57 <HintPath>..\7dtd-binaries\EasyAntiCheat.Server.dll</HintPath>
58 </Reference>
59 <Reference Include="Assembly-CSharp-firstpass">
60 <HintPath>..\7dtd-binaries\Assembly-CSharp-firstpass.dll</HintPath>
61 </Reference>
62 <Reference Include="LogLibrary">
63 <HintPath>..\7dtd-binaries\LogLibrary.dll</HintPath>
64 </Reference>
65 </ItemGroup>
66 <ItemGroup>
67 <Compile Include="src\AssemblyInfo.cs" />
68 <Compile Include="src\AllocsLogFunctions.cs" />
69 <Compile Include="src\AdminToolsStuff.cs" />
70 <Compile Include="src\PlayerDataStuff.cs" />
71 <Compile Include="src\CommandExtensions.cs" />
72 <Compile Include="src\CommonMappingFunctions.cs" />
73 <Compile Include="src\MapRendering\MapRendering.cs" />
74 <Compile Include="src\MapRendering\MapRenderBlockBuffer.cs" />
75 <Compile Include="src\MapRendering\Constants.cs" />
76 <Compile Include="src\CustomCommands\GetTime.cs" />
77 <Compile Include="src\CustomCommands\GetGamePrefs.cs" />
78 <Compile Include="src\CustomCommands\SayToPlayer.cs" />
79 <Compile Include="src\CustomCommands\SetTimeReal.cs" />
80 <Compile Include="src\CustomCommands\ShowInventory.cs" />
81 <Compile Include="src\CustomCommands\PrivateMassageConnections.cs" />
82 <Compile Include="src\CustomCommands\Reply.cs" />
83 <Compile Include="src\CustomCommands\Kill.cs" />
84 <Compile Include="src\CustomCommands\ListLandProtection.cs" />
85 <Compile Include="src\CustomCommands\RemoveLandProtection.cs" />
86 <Compile Include="src\CustomCommands\Version.cs" />
87 <Compile Include="src\CustomCommands\RenderMap.cs" />
88 <Compile Include="src\CustomCommands\Give.cs" />
89 <Compile Include="src\CustomCommands\ListItems.cs" />
90 <Compile Include="src\NetConnections\ConsoleOutputSeparator.cs" />
91 <Compile Include="src\NetConnections\NetTelnetServer.cs" />
92 <Compile Include="src\NetConnections\IServer.cs" />
93 <Compile Include="src\NetConnections\IConnection.cs" />
94 <Compile Include="src\NetConnections\Servers\Telnet\Telnet.cs" />
95 <Compile Include="src\NetConnections\Servers\Telnet\TelnetConnection.cs" />
96 <Compile Include="src\NetConnections\Servers\Web\Web.cs" />
97 <Compile Include="src\NetConnections\Servers\Web\PathHandler.cs" />
98 <Compile Include="src\NetConnections\Servers\Web\StaticHandler.cs" />
99 <Compile Include="src\NetConnections\Servers\Web\SimpleRedirectHandler.cs" />
100 <Compile Include="src\NetConnections\Servers\Web\MimeType.cs" />
101 <Compile Include="src\CustomCommands\EnableRendering.cs" />
102 <Compile Include="src\PersistentData\PersistentContainer.cs" />
103 <Compile Include="src\StateManager.cs" />
104 <Compile Include="src\PersistentData\InvItem.cs" />
105 <Compile Include="src\PersistentData\Inventory.cs" />
106 <Compile Include="src\PersistentData\Players.cs" />
107 <Compile Include="src\PersistentData\Player.cs" />
108 <Compile Include="src\CustomCommands\ListKnownPlayers.cs" />
109 <Compile Include="src\NetConnections\Servers\Web\ApiHandler.cs" />
110 <Compile Include="src\NetConnections\Servers\Web\API\GetPlayersOnline.cs" />
111 <Compile Include="src\NetConnections\Servers\Web\API\WebAPI.cs" />
112 <Compile Include="src\JSON\JSONNode.cs" />
113 <Compile Include="src\JSON\JSONArray.cs" />
114 <Compile Include="src\JSON\JSONObject.cs" />
115 <Compile Include="src\JSON\JSONNumber.cs" />
116 <Compile Include="src\JSON\JSONString.cs" />
117 <Compile Include="src\JSON\JSONBoolean.cs" />
118 <Compile Include="src\NetConnections\Servers\Web\API\GetPlayersLocation.cs" />
119 <Compile Include="src\CustomCommands\TeleportPlayer.cs" />
120 <Compile Include="src\NetConnections\Servers\Web\API\GetPlayerInventory.cs" />
121 <Compile Include="src\NetConnections\Servers\Web\API\GetLandClaims.cs" />
122 <Compile Include="src\BlockingQueue.cs" />
123 <Compile Include="src\JSON\Parser.cs" />
124 <Compile Include="src\JSON\JSONNull.cs" />
125 <Compile Include="src\JSON\MalformedJSONException.cs" />
126 <Compile Include="src\CustomCommands\Unban.cs" />
127 <Compile Include="src\ItemList.cs" />
128 <Compile Include="src\FileCache\AbstractCache.cs" />
129 <Compile Include="src\FileCache\DirectAccess.cs" />
130 <Compile Include="src\FileCache\SimpleCache.cs" />
131 <Compile Include="src\FileCache\MapTileCache.cs" />
132 <Compile Include="src\CustomCommands\webstat.cs" />
133 <Compile Include="src\CustomCommands\ListPlayerIds.cs" />
134 </ItemGroup>
135 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
136 <ItemGroup>
137 <Folder Include="src\" />
138 <Folder Include="src\MapRendering\" />
139 <Folder Include="src\CustomCommands\" />
140 <Folder Include="src\NetConnections\" />
141 <Folder Include="src\NetConnections\Servers\" />
142 <Folder Include="src\NetConnections\Servers\Telnet\" />
143 <Folder Include="src\NetConnections\Servers\Web\" />
144 <Folder Include="src\PersistentData\" />
145 <Folder Include="src\NetConnections\Servers\Web\API\" />
146 <Folder Include="src\JSON\Parser\" />
147 <Folder Include="src\FileCache\" />
148 </ItemGroup>
149</Project>
Note: See TracBrowser for help on using the repository browser.