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

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

Fixes

File size: 4.5 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>v2.0</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 <ItemGroup>
33 <Reference Include="System" />
34 <Reference Include="UnityEngine">
35 <HintPath>..\7dtd-binaries\UnityEngine.dll</HintPath>
36 </Reference>
37 <Reference Include="SteamworksManaged">
38 <HintPath>..\7dtd-binaries\SteamworksManaged.dll</HintPath>
39 </Reference>
40 <Reference Include="Assembly-CSharp">
41 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
42 </Reference>
43 </ItemGroup>
44 <ItemGroup>
45 <Compile Include="src\AssemblyInfo.cs" />
46 <Compile Include="src\AllocsLogFunctions.cs" />
47 <Compile Include="src\AdminToolsStuff.cs" />
48 <Compile Include="src\PlayerDataStuff.cs" />
49 <Compile Include="src\CommandExtensions.cs" />
50 <Compile Include="src\CommonMappingFunctions.cs" />
51 <Compile Include="src\MapRendering\MapRendering.cs" />
52 <Compile Include="src\MapRendering\MapRenderBlockBuffer.cs" />
53 <Compile Include="src\MapRendering\Constants.cs" />
54 <Compile Include="src\CustomCommands\GetTime.cs" />
55 <Compile Include="src\CustomCommands\ListPlayersExtended.cs" />
56 <Compile Include="src\CustomCommands\GetGamePrefs.cs" />
57 <Compile Include="src\CustomCommands\SayToPlayer.cs" />
58 <Compile Include="src\CustomCommands\SetTimeReal.cs" />
59 <Compile Include="src\CustomCommands\ShowInventory.cs" />
60 <Compile Include="src\CustomCommands\PrivateMassageConnections.cs" />
61 <Compile Include="src\CustomCommands\Reply.cs" />
62 <Compile Include="src\CustomCommands\Kill.cs" />
63 <Compile Include="src\CustomCommands\ListLandProtection.cs" />
64 <Compile Include="src\CustomCommands\RemoveLandProtection.cs" />
65 <Compile Include="src\CustomCommands\Version.cs" />
66 <Compile Include="src\CustomCommands\RenderMap.cs" />
67 <Compile Include="src\CustomCommands\CreativeMenu.cs" />
68 <Compile Include="src\CustomCommands\Give.cs" />
69 <Compile Include="src\CustomCommands\ListItems.cs" />
70 <Compile Include="src\NetConnections\ConsoleOutputSeparator.cs" />
71 <Compile Include="src\NetConnections\NetTelnetServer.cs" />
72 <Compile Include="src\NetConnections\IServer.cs" />
73 <Compile Include="src\NetConnections\IConnection.cs" />
74 <Compile Include="src\NetConnections\Servers\Telnet\Telnet.cs" />
75 <Compile Include="src\NetConnections\Servers\Telnet\TelnetConnection.cs" />
76 <Compile Include="src\NetConnections\Servers\Web\Web.cs" />
77 <Compile Include="src\NetConnections\Servers\Web\PathHandler.cs" />
78 <Compile Include="src\NetConnections\Servers\Web\StaticHandler.cs" />
79 <Compile Include="src\NetConnections\Servers\Web\SimpleRedirectHandler.cs" />
80 <Compile Include="src\NetConnections\Servers\Web\MimeType.cs" />
81 <Compile Include="src\CustomCommands\EnableRendering.cs" />
82 </ItemGroup>
83 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
84 <ItemGroup>
85 <Folder Include="src\" />
86 <Folder Include="src\MapRendering\" />
87 <Folder Include="src\CustomCommands\" />
88 <Folder Include="src\NetConnections\" />
89 <Folder Include="src\NetConnections\Servers\" />
90 <Folder Include="src\NetConnections\Servers\Telnet\" />
91 <Folder Include="src\NetConnections\Servers\Web\" />
92 </ItemGroup>
93</Project>
Note: See TracBrowser for help on using the repository browser.