source: binary-improvements2/MarkersMod/MarkersMod.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: 3.8 KB
RevLine 
[390]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>
[391]10 <RootNamespace>Examples</RootNamespace>
[390]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>
[391]18 <OutputPath>..\bin\Mods\Xample_MarkersMod\</OutputPath>
[390]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' ">
[391]25 <OutputPath>..\bin\Mods\Xample_MarkersMod\</OutputPath>
[390]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' ">
[391]34 <OutputPath>..\bin\Mods\Xample_MarkersMod\</OutputPath>
[390]35 <DebugType>full</DebugType>
36 <DebugSymbols>true</DebugSymbols>
37 </PropertyGroup>
[392]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>
[390]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 </ItemGroup>
62 <ItemGroup>
[391]63 <Compile Include="src\ModApi.cs" />
64 <Compile Include="src\AssemblyInfo.cs" />
65 <Compile Include="src\Markers.cs" />
[390]66 </ItemGroup>
67 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
68 <ItemGroup>
69 <None Include="ModInfo.xml">
70 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
71 </None>
72 </ItemGroup>
73 <ItemGroup>
74 <ProjectReference Include="..\7dtd-server-fixes\7dtd-server-fixes.csproj">
75 <Project>{81da7f87-1a66-4920-aada-6eaf1971f8d0}</Project>
76 <Name>7dtd-server-fixes</Name>
77 <Private>False</Private>
78 </ProjectReference>
[391]79 <ProjectReference Include="..\WebServer\WebServer.csproj">
80 <Project>{01b5f981-b9fd-4364-8f9e-9127130d2542}</Project>
81 <Name>WebServer</Name>
[390]82 <Private>False</Private>
83 </ProjectReference>
84 </ItemGroup>
85 <ItemGroup>
86 <Content Include="WebMod\bundle.js">
87 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
88 </Content>
89 <Content Include="WebMod\bundle.js.LICENSE.txt">
90 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
91 </Content>
92 </ItemGroup>
93</Project>
Note: See TracBrowser for help on using the repository browser.