source: binary-improvements2/MarkersMod/MarkersMod.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.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>{2A008E16-6EB8-4B85-A175-3CB89D9FF4AE}</ProjectGuid>
9 <OutputType>Library</OutputType>
10 <RootNamespace>Examples</RootNamespace>
11 <AssemblyName>MarkersMod</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\Xample_MarkersMod\</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\Xample_MarkersMod\</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\Xample_MarkersMod\</OutputPath>
35 <DebugType>full</DebugType>
36 <DebugSymbols>true</DebugSymbols>
37 </PropertyGroup>
38 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_Profiler|AnyCPU' ">
39 <OutputPath>..\bin\Mods\Xample_MarkersMod\</OutputPath>
40 <DefineConstants>ENABLE_PROFILER</DefineConstants>
41 <DebugSymbols>true</DebugSymbols>
42 <DebugType>full</DebugType>
43 </PropertyGroup>
44 <ItemGroup>
45 <Reference Include="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
46 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
47 <Private>False</Private>
48 </Reference>
49 <Reference Include="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
50 <HintPath>..\7dtd-binaries\System.dll</HintPath>
51 <Private>False</Private>
52 </Reference>
53 <Reference Include="Assembly-CSharp">
54 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
55 <Private>False</Private>
56 </Reference>
57 <Reference Include="mscorlib">
58 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
59 <Private>False</Private>
60 </Reference>
61 <Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
62 <HintPath>..\7dtd-binaries\UnityEngine.CoreModule.dll</HintPath>
63 <Private>False</Private>
64 </Reference>
65 <Reference Include="Utf8Json, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
66 <HintPath>..\7dtd-binaries\Utf8Json.dll</HintPath>
67 <Private>False</Private>
68 </Reference>
69 </ItemGroup>
70 <ItemGroup>
71 <Compile Include="src\ModApi.cs" />
72 <Compile Include="src\AssemblyInfo.cs" />
73 <Compile Include="src\Markers.cs" />
74 </ItemGroup>
75 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
76 <ItemGroup>
77 <None Include="ModInfo.xml">
78 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
79 </None>
80 </ItemGroup>
81 <ItemGroup>
82 <ProjectReference Include="..\WebServer\WebServer.csproj">
83 <Project>{01b5f981-b9fd-4364-8f9e-9127130d2542}</Project>
84 <Name>WebServer</Name>
85 <Private>False</Private>
86 </ProjectReference>
87 </ItemGroup>
88 <ItemGroup>
89 <Content Include="WebMod\bundle.js">
90 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
91 </Content>
92 <Content Include="WebMod\bundle.js.LICENSE.txt">
93 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
94 </Content>
95 </ItemGroup>
96</Project>
Note: See TracBrowser for help on using the repository browser.