Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 2511 was 2492, checked in by swagner, 14 years ago

Created new solution HeuristicLab 3.3 and new project HeuristicLab 3.3 for working on the HeuristicLab 3.3 release (#803)

File size: 4.9 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>HeuristicLab33</RootNamespace>
12    <AssemblyName>HeuristicLab 3.3</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
17    <StartupObject>HeuristicLab33.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  </PropertyGroup>
38  <ItemGroup>
39    <Reference Include="System" />
40    <Reference Include="System.Core">
41      <RequiredTargetFramework>3.5</RequiredTargetFramework>
42    </Reference>
43    <Reference Include="System.Xml.Linq">
44      <RequiredTargetFramework>3.5</RequiredTargetFramework>
45    </Reference>
46    <Reference Include="System.Data.DataSetExtensions">
47      <RequiredTargetFramework>3.5</RequiredTargetFramework>
48    </Reference>
49    <Reference Include="System.Data" />
50    <Reference Include="System.Deployment" />
51    <Reference Include="System.Drawing" />
52    <Reference Include="System.Windows.Forms" />
53    <Reference Include="System.Xml" />
54  </ItemGroup>
55  <ItemGroup>
56    <Compile Include="Program.cs" />
57    <Compile Include="Properties\AssemblyInfo.cs" />
58    <EmbeddedResource Include="Properties\Resources.resx">
59      <Generator>ResXFileCodeGenerator</Generator>
60      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
61      <SubType>Designer</SubType>
62    </EmbeddedResource>
63    <Compile Include="Properties\Resources.Designer.cs">
64      <AutoGen>True</AutoGen>
65      <DependentUpon>Resources.resx</DependentUpon>
66      <DesignTime>True</DesignTime>
67    </Compile>
68    <None Include="app.config" />
69    <None Include="CopyAssemblies.cmd" />
70    <None Include="CustomPostBuild.cmd" />
71    <None Include="CustomPostBuildTemplate_UpdateLocalInstallation.cmd" />
72    <None Include="HeuristicLab.snk" />
73    <None Include="MergeConfigs.cmd" />
74    <None Include="Properties\AssemblyInfo.frame" />
75    <None Include="Properties\Settings.settings">
76      <Generator>SettingsSingleFileGenerator</Generator>
77      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
78    </None>
79    <Compile Include="Properties\Settings.Designer.cs">
80      <AutoGen>True</AutoGen>
81      <DependentUpon>Settings.settings</DependentUpon>
82      <DesignTimeSharedInput>True</DesignTimeSharedInput>
83    </Compile>
84  </ItemGroup>
85  <ItemGroup>
86    <ProjectReference Include="..\HeuristicLab\HeuristicLab.csproj">
87      <Project>{623FB817-8371-4A9A-A491-4DECC87B2BBB}</Project>
88      <Name>HeuristicLab</Name>
89    </ProjectReference>
90  </ItemGroup>
91  <ItemGroup>
92    <Content Include="HeuristicLab.ico" />
93  </ItemGroup>
94  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
95  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
96       Other similar extension points exist, see Microsoft.Common.targets.
97  <Target Name="BeforeBuild">
98  </Target>
99  <Target Name="AfterBuild">
100  </Target>
101  -->
102  <PropertyGroup>
103    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
104set ProjectDir=$(ProjectDir)
105set SolutionDir=$(SolutionDir)
106set Outdir=$(Outdir)
107set Configuration=$(ConfigurationName)
108
109call PreBuildEvent.cmd</PreBuildEvent>
110    <PostBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
111set ProjectDir=$(ProjectDir)
112set SolutionDir=$(SolutionDir)
113set Outdir=$(Outdir)
114set Platform=$(PlatformName)
115set Configuration=$(ConfigurationName)
116
117call MergeConfigs.cmd
118call CopyAssemblies.cmd
119if exist "%25ProjectDir%25CustomPostBuild.cmd" call CustomPostBuild.cmd</PostBuildEvent>
120  </PropertyGroup>
121</Project>
Note: See TracBrowser for help on using the repository browser.