source: binary-improvements2/CommandExtensions/CommandExtensions.csproj@ 392

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

Added command to invalidate file caches
Added a debug+profiling build target

File size: 4.1 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>{E273D042-57F9-4E2E-8268-5053527E5287}</ProjectGuid>
9 <OutputType>Library</OutputType>
10 <RootNamespace>CommandExtensions</RootNamespace>
11 <AssemblyName>CommandExtensions</AssemblyName>
12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13 </PropertyGroup>
14 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
15 <DebugType>none</DebugType>
16 <Optimize>true</Optimize>
17 <OutputPath>..\bin\Mods\TFP_CommandExtensions\</OutputPath>
18 <ErrorReport>prompt</ErrorReport>
19 <WarningLevel>4</WarningLevel>
20 <ConsolePause>false</ConsolePause>
21 <NoStdLib>true</NoStdLib>
22 </PropertyGroup>
23 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_Profiler|AnyCPU' ">
24 <OutputPath>..\bin\Mods\TFP_CommandExtensions\</OutputPath>
25 <DefineConstants>ENABLE_PROFILER</DefineConstants>
26 <Optimize>true</Optimize>
27 <WarningLevel>4</WarningLevel>
28 <NoStdLib>true</NoStdLib>
29 </PropertyGroup>
30 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
31 <OutputPath>..\bin\Mods\TFP_CommandExtensions\</OutputPath>
32 <DebugType>full</DebugType>
33 <DebugSymbols>true</DebugSymbols>
34 </PropertyGroup>
35 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_Profiler|AnyCPU' ">
36 <OutputPath>..\bin\Mods\TFP_CommandExtensions\</OutputPath>
37 <DefineConstants>ENABLE_PROFILER</DefineConstants>
38 <DebugSymbols>true</DebugSymbols>
39 <DebugType>full</DebugType>
40 </PropertyGroup>
41 <ItemGroup>
42 <Reference Include="System" />
43 <Reference Include="Assembly-CSharp">
44 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
45 <Private>False</Private>
46 </Reference>
47 <Reference Include="UnityEngine">
48 <HintPath>..\7dtd-binaries\UnityEngine.dll</HintPath>
49 <Private>False</Private>
50 </Reference>
51 <Reference Include="LogLibrary">
52 <HintPath>..\7dtd-binaries\LogLibrary.dll</HintPath>
53 <Private>False</Private>
54 </Reference>
55 <Reference Include="mscorlib">
56 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
57 <Private>False</Private>
58 </Reference>
59 <Reference Include="Assembly-CSharp-firstpass">
60 <HintPath>..\7dtd-binaries\Assembly-CSharp-firstpass.dll</HintPath>
61 <Private>False</Private>
62 </Reference>
63 <Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
64 <HintPath>..\7dtd-binaries\UnityEngine.CoreModule.dll</HintPath>
65 <Private>False</Private>
66 </Reference>
67 </ItemGroup>
68 <ItemGroup>
69 <Compile Include="src\ModApi.cs" />
70 <Compile Include="src\AssemblyInfo.cs" />
71 <Compile Include="src\ChatHelpers.cs" />
72 <Compile Include="src\Commands\Exception.cs" />
73 <Compile Include="src\Commands\Give.cs" />
74 <Compile Include="src\Commands\ListItems.cs" />
75 <Compile Include="src\Commands\ListKnownPlayers.cs" />
76 <Compile Include="src\Commands\ListLandProtection.cs" />
77 <Compile Include="src\Commands\RemoveLandProtection.cs" />
78 <Compile Include="src\Commands\Reply.cs" />
79 <Compile Include="src\Commands\SayToPlayer.cs" />
80 <Compile Include="src\Commands\ShowInventory.cs" />
81 <Compile Include="src\PrivateMessageConnections.cs" />
82 </ItemGroup>
83 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
84 <ItemGroup>
85 <ProjectReference Include="..\7dtd-server-fixes\7dtd-server-fixes.csproj">
86 <Project>{81DA7F87-1A66-4920-AADA-6EAF1971F8D0}</Project>
87 <Name>7dtd-server-fixes</Name>
88 <Private>False</Private>
89 </ProjectReference>
90 </ItemGroup>
91 <ItemGroup>
92 <None Include="ModInfo.xml">
93 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
94 </None>
95 </ItemGroup>
96</Project>
Note: See TracBrowser for help on using the repository browser.