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

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

fixes - untested

File size: 6.5 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>
[133]12 <TargetFrameworkVersion>v2.0</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>
[103]50 <Reference Include="SteamworksManaged">
[115]51 <HintPath>..\7dtd-binaries\SteamworksManaged.dll</HintPath>
[103]52 </Reference>
[115]53 <Reference Include="Assembly-CSharp">
[128]54 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
[115]55 </Reference>
[164]56 <Reference Include="EasyAntiCheat.Client">
57 <HintPath>..\7dtd-binaries\EasyAntiCheat.Client.dll</HintPath>
58 </Reference>
59 <Reference Include="EasyAntiCheat.Server">
60 <HintPath>..\7dtd-binaries\EasyAntiCheat.Server.dll</HintPath>
61 </Reference>
[73]62 </ItemGroup>
63 <ItemGroup>
64 <Compile Include="src\AssemblyInfo.cs" />
[83]65 <Compile Include="src\AllocsLogFunctions.cs" />
[84]66 <Compile Include="src\AdminToolsStuff.cs" />
[93]67 <Compile Include="src\PlayerDataStuff.cs" />
[96]68 <Compile Include="src\CommandExtensions.cs" />
[103]69 <Compile Include="src\CommonMappingFunctions.cs" />
[130]70 <Compile Include="src\MapRendering\MapRendering.cs" />
71 <Compile Include="src\MapRendering\MapRenderBlockBuffer.cs" />
72 <Compile Include="src\MapRendering\Constants.cs" />
73 <Compile Include="src\CustomCommands\GetTime.cs" />
74 <Compile Include="src\CustomCommands\ListPlayersExtended.cs" />
75 <Compile Include="src\CustomCommands\GetGamePrefs.cs" />
76 <Compile Include="src\CustomCommands\SayToPlayer.cs" />
77 <Compile Include="src\CustomCommands\SetTimeReal.cs" />
78 <Compile Include="src\CustomCommands\ShowInventory.cs" />
79 <Compile Include="src\CustomCommands\PrivateMassageConnections.cs" />
80 <Compile Include="src\CustomCommands\Reply.cs" />
81 <Compile Include="src\CustomCommands\Kill.cs" />
82 <Compile Include="src\CustomCommands\ListLandProtection.cs" />
83 <Compile Include="src\CustomCommands\RemoveLandProtection.cs" />
84 <Compile Include="src\CustomCommands\Version.cs" />
85 <Compile Include="src\CustomCommands\RenderMap.cs" />
86 <Compile Include="src\CustomCommands\CreativeMenu.cs" />
87 <Compile Include="src\CustomCommands\Give.cs" />
88 <Compile Include="src\CustomCommands\ListItems.cs" />
[133]89 <Compile Include="src\NetConnections\ConsoleOutputSeparator.cs" />
90 <Compile Include="src\NetConnections\NetTelnetServer.cs" />
91 <Compile Include="src\NetConnections\IServer.cs" />
92 <Compile Include="src\NetConnections\IConnection.cs" />
93 <Compile Include="src\NetConnections\Servers\Telnet\Telnet.cs" />
94 <Compile Include="src\NetConnections\Servers\Telnet\TelnetConnection.cs" />
95 <Compile Include="src\NetConnections\Servers\Web\Web.cs" />
96 <Compile Include="src\NetConnections\Servers\Web\PathHandler.cs" />
97 <Compile Include="src\NetConnections\Servers\Web\StaticHandler.cs" />
98 <Compile Include="src\NetConnections\Servers\Web\SimpleRedirectHandler.cs" />
99 <Compile Include="src\NetConnections\Servers\Web\MimeType.cs" />
[140]100 <Compile Include="src\CustomCommands\EnableRendering.cs" />
[142]101 <Compile Include="src\PersistentData\PersistentContainer.cs" />
102 <Compile Include="src\StateManager.cs" />
[144]103 <Compile Include="src\PersistentData\InvItem.cs" />
104 <Compile Include="src\PersistentData\Inventory.cs" />
105 <Compile Include="src\PersistentData\Players.cs" />
106 <Compile Include="src\PersistentData\Player.cs" />
[146]107 <Compile Include="src\CustomCommands\ListKnownPlayers.cs" />
[154]108 <Compile Include="src\NetConnections\Servers\Web\ApiHandler.cs" />
109 <Compile Include="src\NetConnections\Servers\Web\API\GetPlayersOnline.cs" />
110 <Compile Include="src\NetConnections\Servers\Web\API\WebAPI.cs" />
111 <Compile Include="src\JSON\JSONNode.cs" />
112 <Compile Include="src\JSON\JSONArray.cs" />
113 <Compile Include="src\JSON\JSONObject.cs" />
114 <Compile Include="src\JSON\JSONNumber.cs" />
115 <Compile Include="src\JSON\JSONString.cs" />
116 <Compile Include="src\JSON\JSONBoolean.cs" />
117 <Compile Include="src\NetConnections\Servers\Web\API\GetPlayersLocation.cs" />
[163]118 <Compile Include="src\CustomCommands\TeleportPlayer.cs" />
119 <Compile Include="src\NetConnections\Servers\Web\API\GetPlayerInventory.cs" />
[73]120 </ItemGroup>
121 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
122 <ItemGroup>
123 <Folder Include="src\" />
[130]124 <Folder Include="src\MapRendering\" />
125 <Folder Include="src\CustomCommands\" />
[133]126 <Folder Include="src\NetConnections\" />
127 <Folder Include="src\NetConnections\Servers\" />
128 <Folder Include="src\NetConnections\Servers\Telnet\" />
129 <Folder Include="src\NetConnections\Servers\Web\" />
[142]130 <Folder Include="src\PersistentData\" />
[154]131 <Folder Include="src\NetConnections\Servers\Web\API\" />
[73]132 </ItemGroup>
133</Project>
Note: See TracBrowser for help on using the repository browser.