- Timestamp:
- Apr 2, 2015, 9:16:34 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj
r213 r224 2 2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 3 <PropertyGroup> 4 <Configuration Condition=" '$(Configuration)' == '' "> Debug</Configuration>4 <Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration> 5 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 6 6 <ProductVersion>10.0.0</ProductVersion> … … 12 12 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> 13 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 14 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 25 15 <DebugType>none</DebugType> 26 16 <Optimize>true</Optimize> 27 <OutputPath>..\bin\ Release</OutputPath>17 <OutputPath>..\bin\7DaysToDie_Data\Managed</OutputPath> 28 18 <ErrorReport>prompt</ErrorReport> 29 19 <WarningLevel>4</WarningLevel> … … 33 23 <DebugType>none</DebugType> 34 24 <Optimize>true</Optimize> 35 <OutputPath>..\bin\ Release</OutputPath>25 <OutputPath>..\bin\7DaysToDie_Data\Managed</OutputPath> 36 26 <ErrorReport>prompt</ErrorReport> 37 27 <WarningLevel>4</WarningLevel> … … 60 50 <HintPath>..\7dtd-binaries\LogLibrary.dll</HintPath> 61 51 </Reference> 52 <Reference Include="mscorlib"> 53 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath> 54 </Reference> 62 55 <Reference Include="Assembly-CSharp"> 63 56 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath> … … 67 60 <Compile Include="src\AssemblyInfo.cs" /> 68 61 <Compile Include="src\AllocsLogFunctions.cs" /> 69 <Compile Include="src\AdminToolsStuff.cs" />70 62 <Compile Include="src\PlayerDataStuff.cs" /> 71 63 <Compile Include="src\CommandExtensions.cs" /> 72 64 <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 65 <Compile Include="src\NetConnections\ConsoleOutputSeparator.cs" /> 91 66 <Compile Include="src\NetConnections\NetTelnetServer.cs" /> … … 94 69 <Compile Include="src\NetConnections\Servers\Telnet\Telnet.cs" /> 95 70 <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 71 <Compile Include="src\PersistentData\PersistentContainer.cs" /> 103 72 <Compile Include="src\StateManager.cs" /> … … 106 75 <Compile Include="src\PersistentData\Players.cs" /> 107 76 <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 77 <Compile Include="src\JSON\JSONNode.cs" /> 113 78 <Compile Include="src\JSON\JSONArray.cs" /> … … 116 81 <Compile Include="src\JSON\JSONString.cs" /> 117 82 <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 83 <Compile Include="src\BlockingQueue.cs" /> 123 84 <Compile Include="src\JSON\Parser.cs" /> 124 85 <Compile Include="src\JSON\JSONNull.cs" /> 125 86 <Compile Include="src\JSON\MalformedJSONException.cs" /> 126 <Compile Include="src\CustomCommands\Unban.cs" />127 87 <Compile Include="src\ItemList.cs" /> 128 88 <Compile Include="src\FileCache\AbstractCache.cs" /> … … 130 90 <Compile Include="src\FileCache\SimpleCache.cs" /> 131 91 <Compile Include="src\FileCache\MapTileCache.cs" /> 132 <Compile Include="src\CustomCommands\webstat.cs" /> 133 <Compile Include="src\CustomCommands\ListPlayerIds.cs" /> 92 <Compile Include="src\Mods.cs" /> 93 <Compile Include="src\ModAPI.cs" /> 94 <Compile Include="src\Version.cs" /> 134 95 </ItemGroup> 135 96 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 136 97 <ItemGroup> 137 98 <Folder Include="src\" /> 138 <Folder Include="src\MapRendering\" />139 99 <Folder Include="src\CustomCommands\" /> 140 100 <Folder Include="src\NetConnections\" /> 141 101 <Folder Include="src\NetConnections\Servers\" /> 142 102 <Folder Include="src\NetConnections\Servers\Telnet\" /> 143 <Folder Include="src\NetConnections\Servers\Web\" />144 103 <Folder Include="src\PersistentData\" /> 145 <Folder Include="src\NetConnections\Servers\Web\API\" />146 104 <Folder Include="src\JSON\Parser\" /> 147 105 <Folder Include="src\FileCache\" />
Note:
See TracChangeset
for help on using the changeset viewer.