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

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

Major refactoring/cleanup

File size: 3.6 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 <ItemGroup>
39 <Reference Include="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
40 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
41 <Private>False</Private>
42 </Reference>
43 <Reference Include="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
44 <HintPath>..\7dtd-binaries\System.dll</HintPath>
45 <Private>False</Private>
46 </Reference>
47 <Reference Include="Assembly-CSharp">
48 <HintPath>..\7dtd-binaries\Assembly-CSharp.dll</HintPath>
49 <Private>False</Private>
50 </Reference>
51 <Reference Include="mscorlib">
52 <HintPath>..\7dtd-binaries\mscorlib.dll</HintPath>
53 <Private>False</Private>
54 </Reference>
55 </ItemGroup>
56 <ItemGroup>
57 <Compile Include="src\ModApi.cs" />
58 <Compile Include="src\AssemblyInfo.cs" />
59 <Compile Include="src\Markers.cs" />
60 </ItemGroup>
61 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
62 <ItemGroup>
63 <None Include="ModInfo.xml">
64 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
65 </None>
66 </ItemGroup>
67 <ItemGroup>
68 <ProjectReference Include="..\7dtd-server-fixes\7dtd-server-fixes.csproj">
69 <Project>{81da7f87-1a66-4920-aada-6eaf1971f8d0}</Project>
70 <Name>7dtd-server-fixes</Name>
71 <Private>False</Private>
72 </ProjectReference>
73 <ProjectReference Include="..\WebServer\WebServer.csproj">
74 <Project>{01b5f981-b9fd-4364-8f9e-9127130d2542}</Project>
75 <Name>WebServer</Name>
76 <Private>False</Private>
77 </ProjectReference>
78 </ItemGroup>
79 <ItemGroup>
80 <Content Include="WebMod\bundle.js">
81 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
82 </Content>
83 <Content Include="WebMod\bundle.js.LICENSE.txt">
84 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
85 </Content>
86 </ItemGroup>
87</Project>
Note: See TracBrowser for help on using the repository browser.