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

Last change on this file since 333 was 330, checked in by alloc, 6 years ago

Added profiling build config

File size: 5.4 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>8.0.30703</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\Mods\Allocs_CommonFunc</OutputPath>
18 <ErrorReport>prompt</ErrorReport>
19 <WarningLevel>4</WarningLevel>
20 <ConsolePause>false</ConsolePause>
21 <NoStdLib>true</NoStdLib>
22 </PropertyGroup>
23 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_Version|AnyCPU' ">
24 <DebugType>none</DebugType>
25 <Optimize>true</Optimize>
26 <OutputPath>..\bin\Mods\Allocs_CommonFunc</OutputPath>
27 <ErrorReport>prompt</ErrorReport>
28 <WarningLevel>4</WarningLevel>
29 <CustomCommands>
30 <CustomCommands>
31 <Command type="AfterBuild" command="bash -c &quot;${SolutionDir}/versions.sh &gt; ${TargetDir}/${ProjectName}_version.txt&quot;" workingdir="${SolutionDir}" />
32 </CustomCommands>
33 </CustomCommands>
34 <ConsolePause>false</ConsolePause>
35 <NoStdLib>true</NoStdLib>
36 </PropertyGroup>
37 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_Profiler|AnyCPU' ">
38 <OutputPath>..\bin\Mods\Allocs_CommonFunc\</OutputPath>
39 <DefineConstants>ENABLE_PROFILER</DefineConstants>
40 <Optimize>true</Optimize>
41 </PropertyGroup>
42 <ItemGroup>
43 <Reference Include="Assembly-CSharp">
44 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
45 <Private>False</Private>
46 </Reference>
47 <Reference Include="mscorlib">
48 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
49 <Private>False</Private>
50 </Reference>
51 <Reference Include="System">
52 <HintPath>..\7dtd-binaries\System.dll</HintPath>
53 <Private>False</Private>
54 </Reference>
55 <Reference Include="UnityEngine">
56 <HintPath>..\7dtd-binaries\UnityEngine.dll</HintPath>
57 <Private>False</Private>
58 </Reference>
59 <Reference Include="LogLibrary">
60 <HintPath>..\7dtd-binaries\LogLibrary.dll</HintPath>
61 <Private>False</Private>
62 </Reference>
63 <Reference Include="Assembly-CSharp-firstpass">
64 <HintPath>..\7dtd-binaries\Assembly-CSharp-firstpass.dll</HintPath>
65 <Private>False</Private>
66 </Reference>
67 <Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
68 <HintPath>..\7dtd-binaries\UnityEngine.CoreModule.dll</HintPath>
69 <Private>False</Private>
70 </Reference>
71 <Reference Include="UnityEngine.ImageConversionModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
72 <HintPath>..\7dtd-binaries\UnityEngine.ImageConversionModule.dll</HintPath>
73 <Private>False</Private>
74 </Reference>
75 </ItemGroup>
76 <ItemGroup>
77 <Compile Include="src\AssemblyInfo.cs" />
78 <Compile Include="src\AllocsLogFunctions.cs" />
79 <Compile Include="src\LiveData\Animals.cs" />
80 <Compile Include="src\LiveData\Hostiles.cs" />
81 <Compile Include="src\PlayerDataStuff.cs" />
82 <Compile Include="src\PersistentData\PersistentContainer.cs" />
83 <Compile Include="src\StateManager.cs" />
84 <Compile Include="src\PersistentData\InvItem.cs" />
85 <Compile Include="src\PersistentData\Inventory.cs" />
86 <Compile Include="src\PersistentData\Players.cs" />
87 <Compile Include="src\PersistentData\Player.cs" />
88 <Compile Include="src\JSON\JSONNode.cs" />
89 <Compile Include="src\JSON\JSONArray.cs" />
90 <Compile Include="src\JSON\JSONObject.cs" />
91 <Compile Include="src\JSON\JSONNumber.cs" />
92 <Compile Include="src\JSON\JSONString.cs" />
93 <Compile Include="src\JSON\JSONBoolean.cs" />
94 <Compile Include="src\BlockingQueue.cs" />
95 <Compile Include="src\JSON\Parser.cs" />
96 <Compile Include="src\JSON\JSONNull.cs" />
97 <Compile Include="src\JSON\MalformedJSONException.cs" />
98 <Compile Include="src\FileCache\AbstractCache.cs" />
99 <Compile Include="src\FileCache\DirectAccess.cs" />
100 <Compile Include="src\FileCache\SimpleCache.cs" />
101 <Compile Include="src\FileCache\MapTileCache.cs" />
102 <Compile Include="src\API.cs" />
103 <Compile Include="src\ChatHookExample.cs" />
104 <Compile Include="src\AllocsUtils.cs" />
105 <Compile Include="src\LandClaimList.cs" />
106 <Compile Include="src\PersistentData\Attributes.cs" />
107 <Compile Include="src\JSON\JSONValue.cs" />
108 <Compile Include="src\LiveData\EntityFilterList.cs" />
109 </ItemGroup>
110 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
111 <ItemGroup>
112 <Folder Include="src\" />
113 <Folder Include="src\PersistentData\" />
114 <Folder Include="src\JSON\Parser\" />
115 <Folder Include="src\FileCache\" />
116 </ItemGroup>
117 <ItemGroup>
118 <None Include="ModInfo.xml">
119 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
120 </None>
121 </ItemGroup>
122</Project>
Note: See TracBrowser for help on using the repository browser.