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

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

fixes

File size: 7.4 KB
RevLine 
[73]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>
[130]11 <RootNamespace>AllocsFixes</RootNamespace>
[202]12 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
[73]13 </PropertyGroup>
14 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
15 <DebugSymbols>true</DebugSymbols>
16 <DebugType>full</DebugType>
17 <Optimize>false</Optimize>
[115]18 <OutputPath>..\bin\Debug</OutputPath>
[73]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>
[115]27 <OutputPath>..\bin\Release</OutputPath>
[73]28 <ErrorReport>prompt</ErrorReport>
29 <WarningLevel>4</WarningLevel>
30 <ConsolePause>false</ConsolePause>
31 </PropertyGroup>
[142]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>
[73]45 <ItemGroup>
46 <Reference Include="System" />
[83]47 <Reference Include="UnityEngine">
[115]48 <HintPath>..\7dtd-binaries\UnityEngine.dll</HintPath>
[83]49 </Reference>
[115]50 <Reference Include="Assembly-CSharp">
[128]51 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
[115]52 </Reference>
[164]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>
[203]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>
[73]65 </ItemGroup>
66 <ItemGroup>
67 <Compile Include="src\AssemblyInfo.cs" />
[83]68 <Compile Include="src\AllocsLogFunctions.cs" />
[84]69 <Compile Include="src\AdminToolsStuff.cs" />
[93]70 <Compile Include="src\PlayerDataStuff.cs" />
[96]71 <Compile Include="src\CommandExtensions.cs" />
[103]72 <Compile Include="src\CommonMappingFunctions.cs" />
[130]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\ListPlayersExtended.cs" />
78 <Compile Include="src\CustomCommands\GetGamePrefs.cs" />
79 <Compile Include="src\CustomCommands\SayToPlayer.cs" />
80 <Compile Include="src\CustomCommands\SetTimeReal.cs" />
81 <Compile Include="src\CustomCommands\ShowInventory.cs" />
82 <Compile Include="src\CustomCommands\PrivateMassageConnections.cs" />
83 <Compile Include="src\CustomCommands\Reply.cs" />
84 <Compile Include="src\CustomCommands\Kill.cs" />
85 <Compile Include="src\CustomCommands\ListLandProtection.cs" />
86 <Compile Include="src\CustomCommands\RemoveLandProtection.cs" />
87 <Compile Include="src\CustomCommands\Version.cs" />
88 <Compile Include="src\CustomCommands\RenderMap.cs" />
89 <Compile Include="src\CustomCommands\CreativeMenu.cs" />
90 <Compile Include="src\CustomCommands\Give.cs" />
91 <Compile Include="src\CustomCommands\ListItems.cs" />
[133]92 <Compile Include="src\NetConnections\ConsoleOutputSeparator.cs" />
93 <Compile Include="src\NetConnections\NetTelnetServer.cs" />
94 <Compile Include="src\NetConnections\IServer.cs" />
95 <Compile Include="src\NetConnections\IConnection.cs" />
96 <Compile Include="src\NetConnections\Servers\Telnet\Telnet.cs" />
97 <Compile Include="src\NetConnections\Servers\Telnet\TelnetConnection.cs" />
98 <Compile Include="src\NetConnections\Servers\Web\Web.cs" />
99 <Compile Include="src\NetConnections\Servers\Web\PathHandler.cs" />
100 <Compile Include="src\NetConnections\Servers\Web\StaticHandler.cs" />
101 <Compile Include="src\NetConnections\Servers\Web\SimpleRedirectHandler.cs" />
102 <Compile Include="src\NetConnections\Servers\Web\MimeType.cs" />
[140]103 <Compile Include="src\CustomCommands\EnableRendering.cs" />
[142]104 <Compile Include="src\PersistentData\PersistentContainer.cs" />
105 <Compile Include="src\StateManager.cs" />
[144]106 <Compile Include="src\PersistentData\InvItem.cs" />
107 <Compile Include="src\PersistentData\Inventory.cs" />
108 <Compile Include="src\PersistentData\Players.cs" />
109 <Compile Include="src\PersistentData\Player.cs" />
[146]110 <Compile Include="src\CustomCommands\ListKnownPlayers.cs" />
[154]111 <Compile Include="src\NetConnections\Servers\Web\ApiHandler.cs" />
112 <Compile Include="src\NetConnections\Servers\Web\API\GetPlayersOnline.cs" />
113 <Compile Include="src\NetConnections\Servers\Web\API\WebAPI.cs" />
114 <Compile Include="src\JSON\JSONNode.cs" />
115 <Compile Include="src\JSON\JSONArray.cs" />
116 <Compile Include="src\JSON\JSONObject.cs" />
117 <Compile Include="src\JSON\JSONNumber.cs" />
118 <Compile Include="src\JSON\JSONString.cs" />
119 <Compile Include="src\JSON\JSONBoolean.cs" />
120 <Compile Include="src\NetConnections\Servers\Web\API\GetPlayersLocation.cs" />
[163]121 <Compile Include="src\CustomCommands\TeleportPlayer.cs" />
122 <Compile Include="src\NetConnections\Servers\Web\API\GetPlayerInventory.cs" />
[174]123 <Compile Include="src\NetConnections\Servers\Web\API\GetLandClaims.cs" />
[182]124 <Compile Include="src\BlockingQueue.cs" />
[187]125 <Compile Include="src\JSON\Parser.cs" />
126 <Compile Include="src\JSON\JSONNull.cs" />
127 <Compile Include="src\JSON\MalformedJSONException.cs" />
[196]128 <Compile Include="src\CustomCommands\Unban.cs" />
[197]129 <Compile Include="src\ItemList.cs" />
[199]130 <Compile Include="src\FileCache\AbstractCache.cs" />
131 <Compile Include="src\FileCache\DirectAccess.cs" />
132 <Compile Include="src\FileCache\SimpleCache.cs" />
133 <Compile Include="src\FileCache\MapTileCache.cs" />
[202]134 <Compile Include="src\CustomCommands\webstat.cs" />
[73]135 </ItemGroup>
136 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
137 <ItemGroup>
138 <Folder Include="src\" />
[130]139 <Folder Include="src\MapRendering\" />
140 <Folder Include="src\CustomCommands\" />
[133]141 <Folder Include="src\NetConnections\" />
142 <Folder Include="src\NetConnections\Servers\" />
143 <Folder Include="src\NetConnections\Servers\Telnet\" />
144 <Folder Include="src\NetConnections\Servers\Web\" />
[142]145 <Folder Include="src\PersistentData\" />
[154]146 <Folder Include="src\NetConnections\Servers\Web\API\" />
[187]147 <Folder Include="src\JSON\Parser\" />
[199]148 <Folder Include="src\FileCache\" />
[73]149 </ItemGroup>
150</Project>
Note: See TracBrowser for help on using the repository browser.