1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
2 | <Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
---|
3 | <PropertyGroup>
|
---|
4 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
---|
5 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
---|
6 | <ProductVersion>9.0.30729</ProductVersion>
|
---|
7 | <SchemaVersion>2.0</SchemaVersion>
|
---|
8 | <ProjectGuid>{E94C5E71-3F29-408D-BCDF-23E096CA84CA}</ProjectGuid>
|
---|
9 | <OutputType>Exe</OutputType>
|
---|
10 | <AppDesignerFolder>Properties</AppDesignerFolder>
|
---|
11 | <RootNamespace>HeuristicLab.Tools.ConfigMerger</RootNamespace>
|
---|
12 | <AssemblyName>ConfigMerger</AssemblyName>
|
---|
13 | <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
---|
14 | <FileAlignment>512</FileAlignment>
|
---|
15 | <SignAssembly>true</SignAssembly>
|
---|
16 | <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
|
---|
17 | <StartupObject>HeuristicLab.Tools.ConfigMerger.ConfigMerger</StartupObject>
|
---|
18 | </PropertyGroup>
|
---|
19 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
---|
20 | <DebugSymbols>true</DebugSymbols>
|
---|
21 | <DebugType>full</DebugType>
|
---|
22 | <Optimize>false</Optimize>
|
---|
23 | <OutputPath>bin\Debug\</OutputPath>
|
---|
24 | <DefineConstants>DEBUG;TRACE</DefineConstants>
|
---|
25 | <ErrorReport>prompt</ErrorReport>
|
---|
26 | <WarningLevel>4</WarningLevel>
|
---|
27 | </PropertyGroup>
|
---|
28 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
---|
29 | <DebugType>pdbonly</DebugType>
|
---|
30 | <Optimize>true</Optimize>
|
---|
31 | <OutputPath>bin\Release\</OutputPath>
|
---|
32 | <DefineConstants>TRACE</DefineConstants>
|
---|
33 | <ErrorReport>prompt</ErrorReport>
|
---|
34 | <WarningLevel>4</WarningLevel>
|
---|
35 | <DocumentationFile>bin\Release\ConfigMerger.XML</DocumentationFile>
|
---|
36 | </PropertyGroup>
|
---|
37 | <ItemGroup>
|
---|
38 | <Reference Include="System" />
|
---|
39 | <Reference Include="System.Core">
|
---|
40 | <RequiredTargetFramework>3.5</RequiredTargetFramework>
|
---|
41 | </Reference>
|
---|
42 | <Reference Include="System.Xml.Linq">
|
---|
43 | <RequiredTargetFramework>3.5</RequiredTargetFramework>
|
---|
44 | </Reference>
|
---|
45 | <Reference Include="System.Data.DataSetExtensions">
|
---|
46 | <RequiredTargetFramework>3.5</RequiredTargetFramework>
|
---|
47 | </Reference>
|
---|
48 | <Reference Include="System.Data" />
|
---|
49 | <Reference Include="System.Xml" />
|
---|
50 | </ItemGroup>
|
---|
51 | <ItemGroup>
|
---|
52 | <Compile Include="ConfigMerger.cs" />
|
---|
53 | <Compile Include="Properties\AssemblyInfo.cs" />
|
---|
54 | </ItemGroup>
|
---|
55 | <ItemGroup>
|
---|
56 | <None Include="HeuristicLab.snk" />
|
---|
57 | <None Include="Properties\AssemblyInfo.frame" />
|
---|
58 | </ItemGroup>
|
---|
59 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
---|
60 | <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
---|
61 | Other similar extension points exist, see Microsoft.Common.targets.
|
---|
62 | <Target Name="BeforeBuild">
|
---|
63 | </Target>
|
---|
64 | <Target Name="AfterBuild">
|
---|
65 | </Target>
|
---|
66 | -->
|
---|
67 | <PropertyGroup>
|
---|
68 | <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
|
---|
69 | set ProjectDir=$(ProjectDir)
|
---|
70 | set SolutionDir=$(SolutionDir)
|
---|
71 | set Outdir=$(Outdir)
|
---|
72 |
|
---|
73 | call PreBuildEvent.cmd</PreBuildEvent>
|
---|
74 | </PropertyGroup>
|
---|
75 | </Project> |
---|