[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>
|
---|
[73] | 12 | </PropertyGroup>
|
---|
| 13 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
---|
| 14 | <DebugSymbols>true</DebugSymbols>
|
---|
| 15 | <DebugType>full</DebugType>
|
---|
| 16 | <Optimize>false</Optimize>
|
---|
[115] | 17 | <OutputPath>..\bin\Debug</OutputPath>
|
---|
[73] | 18 | <DefineConstants>DEBUG;</DefineConstants>
|
---|
| 19 | <ErrorReport>prompt</ErrorReport>
|
---|
| 20 | <WarningLevel>4</WarningLevel>
|
---|
| 21 | <ConsolePause>false</ConsolePause>
|
---|
| 22 | </PropertyGroup>
|
---|
| 23 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
---|
| 24 | <DebugType>none</DebugType>
|
---|
| 25 | <Optimize>true</Optimize>
|
---|
[115] | 26 | <OutputPath>..\bin\Release</OutputPath>
|
---|
[73] | 27 | <ErrorReport>prompt</ErrorReport>
|
---|
| 28 | <WarningLevel>4</WarningLevel>
|
---|
| 29 | <ConsolePause>false</ConsolePause>
|
---|
| 30 | </PropertyGroup>
|
---|
| 31 | <ItemGroup>
|
---|
| 32 | <Reference Include="System" />
|
---|
[83] | 33 | <Reference Include="UnityEngine">
|
---|
[115] | 34 | <HintPath>..\7dtd-binaries\UnityEngine.dll</HintPath>
|
---|
[83] | 35 | </Reference>
|
---|
[103] | 36 | <Reference Include="SteamworksManaged">
|
---|
[115] | 37 | <HintPath>..\7dtd-binaries\SteamworksManaged.dll</HintPath>
|
---|
[103] | 38 | </Reference>
|
---|
[115] | 39 | <Reference Include="Assembly-CSharp">
|
---|
[128] | 40 | <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
|
---|
[115] | 41 | </Reference>
|
---|
[73] | 42 | </ItemGroup>
|
---|
| 43 | <ItemGroup>
|
---|
| 44 | <Compile Include="src\AllocsNetTelnetServer.cs" />
|
---|
| 45 | <Compile Include="src\AssemblyInfo.cs" />
|
---|
[75] | 46 | <Compile Include="src\AllocsTelnetConnection.cs" />
|
---|
[83] | 47 | <Compile Include="src\AllocsLogFunctions.cs" />
|
---|
[84] | 48 | <Compile Include="src\AdminToolsStuff.cs" />
|
---|
[93] | 49 | <Compile Include="src\PlayerDataStuff.cs" />
|
---|
[96] | 50 | <Compile Include="src\CommandExtensions.cs" />
|
---|
[103] | 51 | <Compile Include="src\CommonMappingFunctions.cs" />
|
---|
[107] | 52 | <Compile Include="src\ConsoleOutputSeparator.cs" />
|
---|
[130] | 53 | <Compile Include="src\MapRendering\MapRendering.cs" />
|
---|
| 54 | <Compile Include="src\MapRendering\MapRenderBlockBuffer.cs" />
|
---|
| 55 | <Compile Include="src\MapRendering\Constants.cs" />
|
---|
| 56 | <Compile Include="src\CustomCommands\GetTime.cs" />
|
---|
| 57 | <Compile Include="src\CustomCommands\ListPlayersExtended.cs" />
|
---|
| 58 | <Compile Include="src\CustomCommands\GetGamePrefs.cs" />
|
---|
| 59 | <Compile Include="src\CustomCommands\SayToPlayer.cs" />
|
---|
| 60 | <Compile Include="src\CustomCommands\SetTimeReal.cs" />
|
---|
| 61 | <Compile Include="src\CustomCommands\ShowInventory.cs" />
|
---|
| 62 | <Compile Include="src\CustomCommands\PrivateMassageConnections.cs" />
|
---|
| 63 | <Compile Include="src\CustomCommands\Reply.cs" />
|
---|
| 64 | <Compile Include="src\CustomCommands\Kill.cs" />
|
---|
| 65 | <Compile Include="src\CustomCommands\ListLandProtection.cs" />
|
---|
| 66 | <Compile Include="src\CustomCommands\RemoveLandProtection.cs" />
|
---|
| 67 | <Compile Include="src\CustomCommands\Version.cs" />
|
---|
| 68 | <Compile Include="src\CustomCommands\RenderMap.cs" />
|
---|
| 69 | <Compile Include="src\CustomCommands\CreativeMenu.cs" />
|
---|
| 70 | <Compile Include="src\CustomCommands\Give.cs" />
|
---|
| 71 | <Compile Include="src\CustomCommands\ListItems.cs" />
|
---|
[73] | 72 | </ItemGroup>
|
---|
| 73 | <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
---|
| 74 | <ItemGroup>
|
---|
| 75 | <Folder Include="src\" />
|
---|
[130] | 76 | <Folder Include="src\MapRendering\" />
|
---|
| 77 | <Folder Include="src\CustomCommands\" />
|
---|
[73] | 78 | </ItemGroup>
|
---|
| 79 | </Project>
|
---|