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

Last change on this file since 470 was 470, checked in by alloc, 15 months ago

Switched debugging symbols to portable

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