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

Last change on this file since 450 was 450, checked in by alloc, 16 months ago

Set projects to .NET 4.8

File size: 5.3 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>
[450]12 <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
[443]13 <LangVersion>9</LangVersion>
[251]14 </PropertyGroup>
15 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
16 <DebugType>none</DebugType>
17 <Optimize>true</Optimize>
18 <OutputPath>..\bin\Mods\Allocs_CommonFunc</OutputPath>
19 <ErrorReport>prompt</ErrorReport>
20 <WarningLevel>4</WarningLevel>
21 <ConsolePause>false</ConsolePause>
[254]22 <NoStdLib>true</NoStdLib>
[251]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>
[254]36 <NoStdLib>true</NoStdLib>
[251]37 </PropertyGroup>
[330]38 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_Profiler|AnyCPU' ">
39 <OutputPath>..\bin\Mods\Allocs_CommonFunc\</OutputPath>
40 <DefineConstants>ENABLE_PROFILER</DefineConstants>
41 <Optimize>true</Optimize>
[345]42 <WarningLevel>4</WarningLevel>
[355]43 <NoStdLib>true</NoStdLib>
[330]44 </PropertyGroup>
[373]45 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
46 <OutputPath>..\bin\Mods\Allocs_CommonFunc\</OutputPath>
47 <DebugType>full</DebugType>
48 </PropertyGroup>
[251]49 <ItemGroup>
50 <Reference Include="Assembly-CSharp">
51 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
52 <Private>False</Private>
53 </Reference>
54 <Reference Include="mscorlib">
55 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
56 <Private>False</Private>
57 </Reference>
58 <Reference Include="System">
59 <HintPath>..\7dtd-binaries\System.dll</HintPath>
60 <Private>False</Private>
61 </Reference>
62 <Reference Include="UnityEngine">
63 <HintPath>..\7dtd-binaries\UnityEngine.dll</HintPath>
64 <Private>False</Private>
65 </Reference>
66 <Reference Include="LogLibrary">
67 <HintPath>..\7dtd-binaries\LogLibrary.dll</HintPath>
68 <Private>False</Private>
69 </Reference>
70 <Reference Include="Assembly-CSharp-firstpass">
71 <HintPath>..\7dtd-binaries\Assembly-CSharp-firstpass.dll</HintPath>
72 <Private>False</Private>
73 </Reference>
[324]74 <Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
75 <HintPath>..\7dtd-binaries\UnityEngine.CoreModule.dll</HintPath>
76 <Private>False</Private>
77 </Reference>
78 <Reference Include="UnityEngine.ImageConversionModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
79 <HintPath>..\7dtd-binaries\UnityEngine.ImageConversionModule.dll</HintPath>
80 <Private>False</Private>
81 </Reference>
[251]82 </ItemGroup>
83 <ItemGroup>
84 <Compile Include="src\AssemblyInfo.cs" />
[354]85 <Compile Include="src\JSON\JsonManualBuilder.cs" />
[251]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\JSON\JSONNode.cs" />
94 <Compile Include="src\JSON\JSONArray.cs" />
95 <Compile Include="src\JSON\JSONObject.cs" />
96 <Compile Include="src\JSON\JSONNumber.cs" />
97 <Compile Include="src\JSON\JSONString.cs" />
98 <Compile Include="src\JSON\JSONBoolean.cs" />
99 <Compile Include="src\BlockingQueue.cs" />
100 <Compile Include="src\JSON\Parser.cs" />
101 <Compile Include="src\JSON\JSONNull.cs" />
102 <Compile Include="src\JSON\MalformedJSONException.cs" />
103 <Compile Include="src\API.cs" />
[253]104 <Compile Include="src\AllocsUtils.cs" />
105 <Compile Include="src\LandClaimList.cs" />
[273]106 <Compile Include="src\PersistentData\Attributes.cs" />
[279]107 <Compile Include="src\JSON\JSONValue.cs" />
[312]108 <Compile Include="src\LiveData\EntityFilterList.cs" />
[251]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 </ItemGroup>
116 <ItemGroup>
117 <None Include="ModInfo.xml">
118 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
119 </None>
120 </ItemGroup>
[73]121</Project>
Note: See TracBrowser for help on using the repository browser.