Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab 3.3/HeuristicLab 3.3.csproj @ 3333

Last change on this file since 3333 was 2900, checked in by abeham, 14 years ago

Updated solution configuration (added x86 and x64 for all projects and checked release configuration to output documentation xml file)
Added Encodings.RealVector plugin
#95

File size: 6.8 KB
Line 
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>{B1DCDECA-B56E-41D5-9850-EF0D3A77DEAF}</ProjectGuid>
9    <OutputType>WinExe</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab</RootNamespace>
12    <AssemblyName>HeuristicLab</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
17    <StartupObject>HeuristicLab.Program</StartupObject>
18    <RunPostBuildEvent>Always</RunPostBuildEvent>
19    <ApplicationIcon>HeuristicLab.ico</ApplicationIcon>
20  </PropertyGroup>
21  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
22    <DebugSymbols>true</DebugSymbols>
23    <DebugType>full</DebugType>
24    <Optimize>false</Optimize>
25    <OutputPath>bin\Debug\</OutputPath>
26    <DefineConstants>DEBUG;TRACE</DefineConstants>
27    <ErrorReport>prompt</ErrorReport>
28    <WarningLevel>4</WarningLevel>
29  </PropertyGroup>
30  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31    <DebugType>pdbonly</DebugType>
32    <Optimize>true</Optimize>
33    <OutputPath>bin\Release\</OutputPath>
34    <DefineConstants>TRACE</DefineConstants>
35    <ErrorReport>prompt</ErrorReport>
36    <WarningLevel>4</WarningLevel>
37    <DocumentationFile>bin\Release\HeuristicLab.XML</DocumentationFile>
38  </PropertyGroup>
39  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
40    <DebugSymbols>true</DebugSymbols>
41    <OutputPath>bin\x86\Debug\</OutputPath>
42    <DefineConstants>DEBUG;TRACE</DefineConstants>
43    <DebugType>full</DebugType>
44    <PlatformTarget>x86</PlatformTarget>
45    <ErrorReport>prompt</ErrorReport>
46  </PropertyGroup>
47  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
48    <OutputPath>bin\x86\Release\</OutputPath>
49    <DefineConstants>TRACE</DefineConstants>
50    <Optimize>true</Optimize>
51    <DebugType>pdbonly</DebugType>
52    <PlatformTarget>x86</PlatformTarget>
53    <ErrorReport>prompt</ErrorReport>
54    <DocumentationFile>bin\x86\Release\HeuristicLab.XML</DocumentationFile>
55  </PropertyGroup>
56  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
57    <DebugSymbols>true</DebugSymbols>
58    <OutputPath>bin\x64\Debug\</OutputPath>
59    <DefineConstants>DEBUG;TRACE</DefineConstants>
60    <DebugType>full</DebugType>
61    <PlatformTarget>x64</PlatformTarget>
62    <ErrorReport>prompt</ErrorReport>
63  </PropertyGroup>
64  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
65    <OutputPath>bin\x64\Release\</OutputPath>
66    <DefineConstants>TRACE</DefineConstants>
67    <Optimize>true</Optimize>
68    <DebugType>pdbonly</DebugType>
69    <PlatformTarget>x64</PlatformTarget>
70    <ErrorReport>prompt</ErrorReport>
71    <DocumentationFile>bin\x64\Release\HeuristicLab.XML</DocumentationFile>
72  </PropertyGroup>
73  <ItemGroup>
74    <Reference Include="System" />
75    <Reference Include="System.Core">
76      <RequiredTargetFramework>3.5</RequiredTargetFramework>
77    </Reference>
78    <Reference Include="System.Xml.Linq">
79      <RequiredTargetFramework>3.5</RequiredTargetFramework>
80    </Reference>
81    <Reference Include="System.Data.DataSetExtensions">
82      <RequiredTargetFramework>3.5</RequiredTargetFramework>
83    </Reference>
84    <Reference Include="System.Data" />
85    <Reference Include="System.Deployment" />
86    <Reference Include="System.Drawing" />
87    <Reference Include="System.Windows.Forms" />
88    <Reference Include="System.Xml" />
89  </ItemGroup>
90  <ItemGroup>
91    <Compile Include="Program.cs" />
92    <Compile Include="Properties\AssemblyInfo.cs" />
93    <EmbeddedResource Include="Properties\Resources.resx">
94      <Generator>ResXFileCodeGenerator</Generator>
95      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
96      <SubType>Designer</SubType>
97    </EmbeddedResource>
98    <Compile Include="Properties\Resources.Designer.cs">
99      <AutoGen>True</AutoGen>
100      <DependentUpon>Resources.resx</DependentUpon>
101      <DesignTime>True</DesignTime>
102    </Compile>
103    <None Include="app.config" />
104    <None Include="CopyAssemblies.cmd" />
105    <None Include="CreateConsoleApplication.cmd" />
106    <None Include="CustomPostBuild.cmd" />
107    <None Include="CustomPostBuildTemplate_UpdateLocalInstallation.cmd" />
108    <None Include="HeuristicLab.snk" />
109    <None Include="MergeConfigs.cmd" />
110    <None Include="Properties\AssemblyInfo.frame" />
111    <None Include="Properties\Settings.settings">
112      <Generator>SettingsSingleFileGenerator</Generator>
113      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
114    </None>
115    <Compile Include="Properties\Settings.Designer.cs">
116      <AutoGen>True</AutoGen>
117      <DependentUpon>Settings.settings</DependentUpon>
118      <DesignTimeSharedInput>True</DesignTimeSharedInput>
119    </Compile>
120  </ItemGroup>
121  <ItemGroup>
122    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
123      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
124      <Name>HeuristicLab.PluginInfrastructure</Name>
125    </ProjectReference>
126  </ItemGroup>
127  <ItemGroup>
128    <Content Include="Files.txt">
129    </Content>
130    <Content Include="Files.x64.txt">
131    </Content>
132    <Content Include="Files.x86.txt">
133    </Content>
134    <Content Include="HeuristicLab.ico" />
135  </ItemGroup>
136  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
137  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
138       Other similar extension points exist, see Microsoft.Common.targets.
139  <Target Name="BeforeBuild">
140  </Target>
141  <Target Name="AfterBuild">
142  </Target>
143  -->
144  <PropertyGroup>
145    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
146set ProjectDir=$(ProjectDir)
147set SolutionDir=$(SolutionDir)
148set Outdir=$(Outdir)
149set Configuration=$(ConfigurationName)
150
151call PreBuildEvent.cmd</PreBuildEvent>
152    <PostBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
153set ProjectDir=$(ProjectDir)
154set SolutionDir=$(SolutionDir)
155set Outdir=$(Outdir)
156set Platform=$(PlatformName)
157set Configuration=$(ConfigurationName)
158
159call CreateConsoleApplication.cmd
160call MergeConfigs.cmd
161call CopyAssemblies.cmd
162if exist "%25ProjectDir%25CustomPostBuild.cmd" call CustomPostBuild.cmd</PostBuildEvent>
163  </PropertyGroup>
164</Project>
Note: See TracBrowser for help on using the repository browser.