source: binary-improvements/assembly-patcher/Assembly-Patcher.csproj@ 142

Last change on this file since 142 was 142, checked in by alloc, 10 years ago

Fixes: Fixed #49

File size: 2.3 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)' == '' ">Debug</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6 <ProductVersion>10.0.0</ProductVersion>
7 <SchemaVersion>2.0</SchemaVersion>
8 <ProjectGuid>{FFDBEC4C-E28E-4BF5-A271-33D9368F7F6D}</ProjectGuid>
9 <OutputType>Exe</OutputType>
10 <RootNamespace>dtdfixer</RootNamespace>
11 <AssemblyName>7dtd-fixer</AssemblyName>
12 </PropertyGroup>
13 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
14 <DebugSymbols>true</DebugSymbols>
15 <DebugType>full</DebugType>
16 <Optimize>false</Optimize>
17 <OutputPath>..\bin\Debug</OutputPath>
18 <DefineConstants>DEBUG;</DefineConstants>
19 <ErrorReport>prompt</ErrorReport>
20 <WarningLevel>4</WarningLevel>
21 <PlatformTarget>x86</PlatformTarget>
22 <ConsolePause>false</ConsolePause>
23 </PropertyGroup>
24 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
25 <DebugType>none</DebugType>
26 <Optimize>true</Optimize>
27 <OutputPath>..\bin\Release</OutputPath>
28 <ErrorReport>prompt</ErrorReport>
29 <WarningLevel>4</WarningLevel>
30 <PlatformTarget>x86</PlatformTarget>
31 <Externalconsole>true</Externalconsole>
32 </PropertyGroup>
33 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_Version|AnyCPU' ">
34 <DebugType>none</DebugType>
35 <Optimize>false</Optimize>
36 <OutputPath>..\bin\Release</OutputPath>
37 <WarningLevel>4</WarningLevel>
38 <Externalconsole>true</Externalconsole>
39 </PropertyGroup>
40 <ItemGroup>
41 <Reference Include="System" />
42 <Reference Include="Mono.Cecil">
43 <HintPath>..\Mono.Cecil.dll</HintPath>
44 </Reference>
45 </ItemGroup>
46 <ItemGroup>
47 <Compile Include="Main.cs" />
48 <Compile Include="AssemblyInfo.cs" />
49 </ItemGroup>
50 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
51 <ItemGroup>
52 <ProjectReference Include="..\7dtd-server-fixes\7dtd-server-fixes.csproj">
53 <Project>{81DA7F87-1A66-4920-AADA-6EAF1971F8D0}</Project>
54 <Name>7dtd-server-fixes</Name>
55 <Private>False</Private>
56 </ProjectReference>
57 </ItemGroup>
58</Project>
Note: See TracBrowser for help on using the repository browser.