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

Last change on this file since 254 was 254, checked in by alloc, 7 years ago

Fixes 6_8_11

File size: 4.6 KB
RevLine 
[251]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>
[254]6    <ProductVersion>8.0.30703</ProductVersion>
[251]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>
[254]21    <NoStdLib>true</NoStdLib>
[251]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>
[254]35    <NoStdLib>true</NoStdLib>
[251]36  </PropertyGroup>
37  <ItemGroup>
38    <Reference Include="Assembly-CSharp">
39      <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
40      <Private>False</Private>
41    </Reference>
42    <Reference Include="mscorlib">
43      <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
44      <Private>False</Private>
45    </Reference>
46    <Reference Include="System">
47      <HintPath>..\7dtd-binaries\System.dll</HintPath>
48      <Private>False</Private>
49    </Reference>
50    <Reference Include="UnityEngine">
51      <HintPath>..\7dtd-binaries\UnityEngine.dll</HintPath>
52      <Private>False</Private>
53    </Reference>
54    <Reference Include="LogLibrary">
55      <HintPath>..\7dtd-binaries\LogLibrary.dll</HintPath>
56      <Private>False</Private>
57    </Reference>
58    <Reference Include="Assembly-CSharp-firstpass">
59      <HintPath>..\7dtd-binaries\Assembly-CSharp-firstpass.dll</HintPath>
60      <Private>False</Private>
61    </Reference>
62  </ItemGroup>
63  <ItemGroup>
64    <Compile Include="src\AssemblyInfo.cs" />
65    <Compile Include="src\AllocsLogFunctions.cs" />
66    <Compile Include="src\LiveData\Animals.cs" />
67    <Compile Include="src\LiveData\Hostiles.cs" />
68    <Compile Include="src\PlayerDataStuff.cs" />
69    <Compile Include="src\PersistentData\PersistentContainer.cs" />
70    <Compile Include="src\StateManager.cs" />
71    <Compile Include="src\PersistentData\InvItem.cs" />
72    <Compile Include="src\PersistentData\Inventory.cs" />
73    <Compile Include="src\PersistentData\Players.cs" />
74    <Compile Include="src\PersistentData\Player.cs" />
75    <Compile Include="src\JSON\JSONNode.cs" />
76    <Compile Include="src\JSON\JSONArray.cs" />
77    <Compile Include="src\JSON\JSONObject.cs" />
78    <Compile Include="src\JSON\JSONNumber.cs" />
79    <Compile Include="src\JSON\JSONString.cs" />
80    <Compile Include="src\JSON\JSONBoolean.cs" />
81    <Compile Include="src\BlockingQueue.cs" />
82    <Compile Include="src\JSON\Parser.cs" />
83    <Compile Include="src\JSON\JSONNull.cs" />
84    <Compile Include="src\JSON\MalformedJSONException.cs" />
85    <Compile Include="src\ItemList.cs" />
86    <Compile Include="src\FileCache\AbstractCache.cs" />
87    <Compile Include="src\FileCache\DirectAccess.cs" />
88    <Compile Include="src\FileCache\SimpleCache.cs" />
89    <Compile Include="src\FileCache\MapTileCache.cs" />
90    <Compile Include="src\API.cs" />
91    <Compile Include="src\ChatHookExample.cs" />
[253]92    <Compile Include="src\AllocsUtils.cs" />
93    <Compile Include="src\LandClaimList.cs" />
[251]94  </ItemGroup>
95  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
96  <ItemGroup>
97    <Folder Include="src\" />
98    <Folder Include="src\PersistentData\" />
99    <Folder Include="src\JSON\Parser\" />
100    <Folder Include="src\FileCache\" />
101  </ItemGroup>
102  <ItemGroup>
103    <None Include="ModInfo.xml">
104      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
105    </None>
106  </ItemGroup>
[73]107</Project>
Note: See TracBrowser for help on using the repository browser.