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

Last change on this file since 425 was 425, checked in by alloc, 19 months ago
  • API "map" added, currently only supports GET with the ID "config"
  • API "player" added, currently only supports getting online players with some of the info not supported yet (playtime, last online, level)
  • Only logged in player's data is shown unless the user has the permission for "webapi.viewallplayers"
  • Internal refactoring
  • (Updated version to 21.0.258)
File size: 5.0 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 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_Profiler|AnyCPU' ">
39 <OutputPath>..\bin\Mods\TFP_MapRendering\</OutputPath>
40 <DefineConstants>ENABLE_PROFILER</DefineConstants>
41 <DebugSymbols>true</DebugSymbols>
42 <DebugType>full</DebugType>
43 </PropertyGroup>
44 <ItemGroup>
45 <Reference Include="Assembly-CSharp-firstpass, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
46 <HintPath>..\7dtd-binaries\Assembly-CSharp-firstpass.dll</HintPath>
47 <Private>False</Private>
48 </Reference>
49 <Reference Include="LogLibrary">
50 <HintPath>..\7dtd-binaries\LogLibrary.dll</HintPath>
51 <Private>False</Private>
52 </Reference>
53 <Reference Include="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
54 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
55 <Private>False</Private>
56 </Reference>
57 <Reference Include="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
58 <HintPath>..\7dtd-binaries\System.dll</HintPath>
59 <Private>False</Private>
60 </Reference>
61 <Reference Include="System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
62 <HintPath>..\7dtd-binaries\System.Xml.dll</HintPath>
63 <Private>False</Private>
64 </Reference>
65 <Reference Include="UnityEngine">
66 <HintPath>..\7dtd-binaries\UnityEngine.dll</HintPath>
67 <Private>False</Private>
68 </Reference>
69 <Reference Include="Assembly-CSharp">
70 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
71 <Private>False</Private>
72 </Reference>
73 <Reference Include="mscorlib">
74 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
75 <Private>False</Private>
76 </Reference>
77 <Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
78 <HintPath>..\7dtd-binaries\UnityEngine.CoreModule.dll</HintPath>
79 <Private>False</Private>
80 </Reference>
81 <Reference Include="UnityEngine.ImageConversionModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
82 <HintPath>..\7dtd-binaries\UnityEngine.ImageConversionModule.dll</HintPath>
83 <Private>False</Private>
84 </Reference>
85 <Reference Include="Utf8Json, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
86 <HintPath>..\7dtd-binaries\Utf8Json.dll</HintPath>
87 <Private>False</Private>
88 </Reference>
89 </ItemGroup>
90 <ItemGroup>
91 <Compile Include="src\Api\Map.cs" />
92 <Compile Include="src\Constants.cs" />
93 <Compile Include="src\MapRenderBlockBuffer.cs" />
94 <Compile Include="src\MapRenderer.cs" />
95 <Compile Include="src\MapTileCache.cs" />
96 <Compile Include="src\ModApi.cs" />
97 <Compile Include="src\AssemblyInfo.cs" />
98 <Compile Include="src\Commands\EnableRendering.cs" />
99 <Compile Include="src\Commands\RenderMap.cs" />
100 </ItemGroup>
101 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
102 <ItemGroup>
103 <None Include="ModInfo.xml">
104 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
105 </None>
106 </ItemGroup>
107 <ItemGroup>
108 <ProjectReference Include="..\WebServer\WebServer.csproj">
109 <Project>{01b5f981-b9fd-4364-8f9e-9127130d2542}</Project>
110 <Name>WebServer</Name>
111 <Private>False</Private>
112 </ProjectReference>
113 </ItemGroup>
114</Project>
Note: See TracBrowser for help on using the repository browser.