source: binary-improvements2/7dtd-server-fixes/7dtd-server-fixes.csproj@ 402

Last change on this file since 402 was 402, checked in by alloc, 22 months ago
  • Major refactoring
  • Using Utf8Json for (de)serialization
  • Moving APIs to REST
  • Removing dependencies from WebServer and MapRenderer to ServerFixes
File size: 4.8 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>
[355]12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
[251]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>
[330]37 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_Profiler|AnyCPU' ">
38 <OutputPath>..\bin\Mods\Allocs_CommonFunc\</OutputPath>
39 <DefineConstants>ENABLE_PROFILER</DefineConstants>
40 <Optimize>true</Optimize>
[345]41 <WarningLevel>4</WarningLevel>
[355]42 <NoStdLib>true</NoStdLib>
[330]43 </PropertyGroup>
[373]44 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
45 <OutputPath>..\bin\Mods\Allocs_CommonFunc\</OutputPath>
46 <DebugType>full</DebugType>
[386]47 <DebugSymbols>true</DebugSymbols>
[373]48 </PropertyGroup>
[392]49 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_Profiler|AnyCPU' ">
50 <OutputPath>..\bin\Mods\Allocs_CommonFunc\</OutputPath>
51 <DefineConstants>ENABLE_PROFILER</DefineConstants>
52 <DebugSymbols>true</DebugSymbols>
53 <DebugType>full</DebugType>
54 </PropertyGroup>
[251]55 <ItemGroup>
56 <Reference Include="Assembly-CSharp">
57 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
58 <Private>False</Private>
59 </Reference>
60 <Reference Include="mscorlib">
61 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
62 <Private>False</Private>
63 </Reference>
64 <Reference Include="System">
65 <HintPath>..\7dtd-binaries\System.dll</HintPath>
66 <Private>False</Private>
67 </Reference>
68 <Reference Include="UnityEngine">
69 <HintPath>..\7dtd-binaries\UnityEngine.dll</HintPath>
70 <Private>False</Private>
71 </Reference>
72 <Reference Include="LogLibrary">
73 <HintPath>..\7dtd-binaries\LogLibrary.dll</HintPath>
74 <Private>False</Private>
75 </Reference>
76 <Reference Include="Assembly-CSharp-firstpass">
77 <HintPath>..\7dtd-binaries\Assembly-CSharp-firstpass.dll</HintPath>
78 <Private>False</Private>
79 </Reference>
[324]80 <Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
81 <HintPath>..\7dtd-binaries\UnityEngine.CoreModule.dll</HintPath>
82 <Private>False</Private>
83 </Reference>
84 <Reference Include="UnityEngine.ImageConversionModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
85 <HintPath>..\7dtd-binaries\UnityEngine.ImageConversionModule.dll</HintPath>
86 <Private>False</Private>
87 </Reference>
[251]88 </ItemGroup>
89 <ItemGroup>
90 <Compile Include="src\AssemblyInfo.cs" />
91 <Compile Include="src\PersistentData\PersistentContainer.cs" />
92 <Compile Include="src\PersistentData\InvItem.cs" />
93 <Compile Include="src\PersistentData\Inventory.cs" />
94 <Compile Include="src\PersistentData\Players.cs" />
95 <Compile Include="src\PersistentData\Player.cs" />
[391]96 <Compile Include="src\ModApi.cs" />
[253]97 <Compile Include="src\LandClaimList.cs" />
[273]98 <Compile Include="src\PersistentData\Attributes.cs" />
[251]99 </ItemGroup>
100 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
101 <ItemGroup>
102 <Folder Include="src\" />
103 <Folder Include="src\PersistentData\" />
104 </ItemGroup>
105 <ItemGroup>
106 <None Include="ModInfo.xml">
107 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
108 </None>
109 </ItemGroup>
[73]110</Project>
Note: See TracBrowser for help on using the repository browser.