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

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

Fixes

File size: 4.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>
[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>
32 <ItemGroup>
33 <Reference Include="System" />
[83]34 <Reference Include="UnityEngine">
[115]35 <HintPath>..\7dtd-binaries\UnityEngine.dll</HintPath>
[83]36 </Reference>
[103]37 <Reference Include="SteamworksManaged">
[115]38 <HintPath>..\7dtd-binaries\SteamworksManaged.dll</HintPath>
[103]39 </Reference>
[115]40 <Reference Include="Assembly-CSharp">
[128]41 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
[115]42 </Reference>
[73]43 </ItemGroup>
44 <ItemGroup>
45 <Compile Include="src\AssemblyInfo.cs" />
[83]46 <Compile Include="src\AllocsLogFunctions.cs" />
[84]47 <Compile Include="src\AdminToolsStuff.cs" />
[93]48 <Compile Include="src\PlayerDataStuff.cs" />
[96]49 <Compile Include="src\CommandExtensions.cs" />
[103]50 <Compile Include="src\CommonMappingFunctions.cs" />
[130]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" />
[133]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" />
[73]81 </ItemGroup>
82 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
83 <ItemGroup>
84 <Folder Include="src\" />
[130]85 <Folder Include="src\MapRendering\" />
86 <Folder Include="src\CustomCommands\" />
[133]87 <Folder Include="src\NetConnections\" />
88 <Folder Include="src\NetConnections\Servers\" />
89 <Folder Include="src\NetConnections\Servers\Telnet\" />
90 <Folder Include="src\NetConnections\Servers\Web\" />
[73]91 </ItemGroup>
92</Project>
Note: See TracBrowser for help on using the repository browser.