source: binary-improvements2/MapRendering/MapRendering.csproj@ 391

Last change on this file since 391 was 391, checked in by alloc, 2 years ago

Major refactoring/cleanup

File size: 4.5 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>{A1847B5F-7BFC-4BCD-94AA-A6C9FB7E7C54}</ProjectGuid>
9 <OutputType>Library</OutputType>
10 <RootNamespace>MapRendering</RootNamespace>
11 <AssemblyName>MapRendering</AssemblyName>
12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13 <LangVersion>8</LangVersion>
14 </PropertyGroup>
15 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
16 <DebugType>none</DebugType>
17 <Optimize>true</Optimize>
18 <OutputPath>..\bin\Mods\TFP_MapRendering\</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_Profiler|AnyCPU' ">
25 <OutputPath>..\bin\Mods\TFP_MapRendering\</OutputPath>
26 <DefineConstants>ENABLE_PROFILER</DefineConstants>
27 <Optimize>true</Optimize>
28 <DebugSymbols>true</DebugSymbols>
29 <DebugType>full</DebugType>
30 <WarningLevel>4</WarningLevel>
31 <NoStdLib>true</NoStdLib>
32 </PropertyGroup>
33 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
34 <OutputPath>..\bin\Mods\TFP_MapRendering\</OutputPath>
35 <DebugType>full</DebugType>
36 <DebugSymbols>true</DebugSymbols>
37 </PropertyGroup>
38 <ItemGroup>
39 <Reference Include="Assembly-CSharp-firstpass, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
40 <HintPath>..\7dtd-binaries\Assembly-CSharp-firstpass.dll</HintPath>
41 <Private>False</Private>
42 </Reference>
43 <Reference Include="LogLibrary">
44 <HintPath>..\7dtd-binaries\LogLibrary.dll</HintPath>
45 <Private>False</Private>
46 </Reference>
47 <Reference Include="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
48 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
49 <Private>False</Private>
50 </Reference>
51 <Reference Include="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
52 <HintPath>..\7dtd-binaries\System.dll</HintPath>
53 <Private>False</Private>
54 </Reference>
55 <Reference Include="System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
56 <HintPath>..\7dtd-binaries\System.Xml.dll</HintPath>
57 <Private>False</Private>
58 </Reference>
59 <Reference Include="UnityEngine">
60 <HintPath>..\7dtd-binaries\UnityEngine.dll</HintPath>
61 <Private>False</Private>
62 </Reference>
63 <Reference Include="Assembly-CSharp">
64 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
65 <Private>False</Private>
66 </Reference>
67 <Reference Include="mscorlib">
68 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
69 <Private>False</Private>
70 </Reference>
71 <Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
72 <HintPath>..\7dtd-binaries\UnityEngine.CoreModule.dll</HintPath>
73 <Private>False</Private>
74 </Reference>
75 <Reference Include="UnityEngine.ImageConversionModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
76 <HintPath>..\7dtd-binaries\UnityEngine.ImageConversionModule.dll</HintPath>
77 <Private>False</Private>
78 </Reference>
79 </ItemGroup>
80 <ItemGroup>
81 <Compile Include="src\Constants.cs" />
82 <Compile Include="src\MapRenderBlockBuffer.cs" />
83 <Compile Include="src\MapRenderer.cs" />
84 <Compile Include="src\ModApi.cs" />
85 <Compile Include="src\AssemblyInfo.cs" />
86 <Compile Include="src\Commands\EnableRendering.cs" />
87 <Compile Include="src\Commands\RenderMap.cs" />
88 </ItemGroup>
89 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
90 <ItemGroup>
91 <ProjectReference Include="..\7dtd-server-fixes\7dtd-server-fixes.csproj">
92 <Project>{81DA7F87-1A66-4920-AADA-6EAF1971F8D0}</Project>
93 <Name>7dtd-server-fixes</Name>
94 <Private>False</Private>
95 </ProjectReference>
96 </ItemGroup>
97 <ItemGroup>
98 <None Include="ModInfo.xml">
99 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
100 </None>
101 </ItemGroup>
102</Project>
Note: See TracBrowser for help on using the repository browser.