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

Last change on this file since 226 was 224, checked in by alloc, 10 years ago

A11 preps

File size: 4.8 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)' == '' ">Release</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>v3.5</TargetFrameworkVersion>
13 </PropertyGroup>
14 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
15 <DebugType>none</DebugType>
16 <Optimize>true</Optimize>
17 <OutputPath>..\bin\7DaysToDie_Data\Managed</OutputPath>
18 <ErrorReport>prompt</ErrorReport>
19 <WarningLevel>4</WarningLevel>
20 <ConsolePause>false</ConsolePause>
21 </PropertyGroup>
22 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_Version|AnyCPU' ">
23 <DebugType>none</DebugType>
24 <Optimize>true</Optimize>
25 <OutputPath>..\bin\7DaysToDie_Data\Managed</OutputPath>
26 <ErrorReport>prompt</ErrorReport>
27 <WarningLevel>4</WarningLevel>
28 <CustomCommands>
29 <CustomCommands>
30 <Command type="AfterBuild" command="bash -c &quot;monodis --assembly ${TargetFile} | grep Version &gt; ${TargetDir}/${ProjectName}_version.txt&quot;" />
31 </CustomCommands>
32 </CustomCommands>
33 <ConsolePause>false</ConsolePause>
34 </PropertyGroup>
35 <ItemGroup>
36 <Reference Include="System" />
37 <Reference Include="UnityEngine">
38 <HintPath>..\7dtd-binaries\UnityEngine.dll</HintPath>
39 </Reference>
40 <Reference Include="EasyAntiCheat.Client">
41 <HintPath>..\7dtd-binaries\EasyAntiCheat.Client.dll</HintPath>
42 </Reference>
43 <Reference Include="EasyAntiCheat.Server">
44 <HintPath>..\7dtd-binaries\EasyAntiCheat.Server.dll</HintPath>
45 </Reference>
46 <Reference Include="Assembly-CSharp-firstpass">
47 <HintPath>..\7dtd-binaries\Assembly-CSharp-firstpass.dll</HintPath>
48 </Reference>
49 <Reference Include="LogLibrary">
50 <HintPath>..\7dtd-binaries\LogLibrary.dll</HintPath>
51 </Reference>
52 <Reference Include="mscorlib">
53 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
54 </Reference>
55 <Reference Include="Assembly-CSharp">
56 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
57 </Reference>
58 </ItemGroup>
59 <ItemGroup>
60 <Compile Include="src\AssemblyInfo.cs" />
61 <Compile Include="src\AllocsLogFunctions.cs" />
62 <Compile Include="src\PlayerDataStuff.cs" />
63 <Compile Include="src\CommandExtensions.cs" />
64 <Compile Include="src\CommonMappingFunctions.cs" />
65 <Compile Include="src\NetConnections\ConsoleOutputSeparator.cs" />
66 <Compile Include="src\NetConnections\NetTelnetServer.cs" />
67 <Compile Include="src\NetConnections\IServer.cs" />
68 <Compile Include="src\NetConnections\IConnection.cs" />
69 <Compile Include="src\NetConnections\Servers\Telnet\Telnet.cs" />
70 <Compile Include="src\NetConnections\Servers\Telnet\TelnetConnection.cs" />
71 <Compile Include="src\PersistentData\PersistentContainer.cs" />
72 <Compile Include="src\StateManager.cs" />
73 <Compile Include="src\PersistentData\InvItem.cs" />
74 <Compile Include="src\PersistentData\Inventory.cs" />
75 <Compile Include="src\PersistentData\Players.cs" />
76 <Compile Include="src\PersistentData\Player.cs" />
77 <Compile Include="src\JSON\JSONNode.cs" />
78 <Compile Include="src\JSON\JSONArray.cs" />
79 <Compile Include="src\JSON\JSONObject.cs" />
80 <Compile Include="src\JSON\JSONNumber.cs" />
81 <Compile Include="src\JSON\JSONString.cs" />
82 <Compile Include="src\JSON\JSONBoolean.cs" />
83 <Compile Include="src\BlockingQueue.cs" />
84 <Compile Include="src\JSON\Parser.cs" />
85 <Compile Include="src\JSON\JSONNull.cs" />
86 <Compile Include="src\JSON\MalformedJSONException.cs" />
87 <Compile Include="src\ItemList.cs" />
88 <Compile Include="src\FileCache\AbstractCache.cs" />
89 <Compile Include="src\FileCache\DirectAccess.cs" />
90 <Compile Include="src\FileCache\SimpleCache.cs" />
91 <Compile Include="src\FileCache\MapTileCache.cs" />
92 <Compile Include="src\Mods.cs" />
93 <Compile Include="src\ModAPI.cs" />
94 <Compile Include="src\Version.cs" />
95 </ItemGroup>
96 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
97 <ItemGroup>
98 <Folder Include="src\" />
99 <Folder Include="src\CustomCommands\" />
100 <Folder Include="src\NetConnections\" />
101 <Folder Include="src\NetConnections\Servers\" />
102 <Folder Include="src\NetConnections\Servers\Telnet\" />
103 <Folder Include="src\PersistentData\" />
104 <Folder Include="src\JSON\Parser\" />
105 <Folder Include="src\FileCache\" />
106 </ItemGroup>
107</Project>
Note: See TracBrowser for help on using the repository browser.