Free cookie consent management tool by TermsFeed Policy Generator

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

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

Applied changes resulting from the refactored plugin infrastructure to HeuristicLab 3.3 (#799)

File size: 5.2 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  </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="CreateConsoleApplication.cmd" />
71    <None Include="CustomPostBuild.cmd" />
72    <None Include="CustomPostBuildTemplate_UpdateLocalInstallation.cmd" />
73    <None Include="HeuristicLab.snk" />
74    <None Include="MergeConfigs.cmd" />
75    <None Include="Properties\AssemblyInfo.frame" />
76    <None Include="Properties\Settings.settings">
77      <Generator>SettingsSingleFileGenerator</Generator>
78      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
79    </None>
80    <Compile Include="Properties\Settings.Designer.cs">
81      <AutoGen>True</AutoGen>
82      <DependentUpon>Settings.settings</DependentUpon>
83      <DesignTimeSharedInput>True</DesignTimeSharedInput>
84    </Compile>
85  </ItemGroup>
86  <ItemGroup>
87    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
88      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
89      <Name>HeuristicLab.PluginInfrastructure</Name>
90    </ProjectReference>
91  </ItemGroup>
92  <ItemGroup>
93    <Content Include="Files.txt">
94    </Content>
95    <Content Include="Files.x64.txt">
96    </Content>
97    <Content Include="Files.x86.txt">
98    </Content>
99    <Content Include="HeuristicLab.ico" />
100  </ItemGroup>
101  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
102  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
103       Other similar extension points exist, see Microsoft.Common.targets.
104  <Target Name="BeforeBuild">
105  </Target>
106  <Target Name="AfterBuild">
107  </Target>
108  -->
109  <PropertyGroup>
110    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
111set ProjectDir=$(ProjectDir)
112set SolutionDir=$(SolutionDir)
113set Outdir=$(Outdir)
114set Configuration=$(ConfigurationName)
115
116call PreBuildEvent.cmd</PreBuildEvent>
117    <PostBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
118set ProjectDir=$(ProjectDir)
119set SolutionDir=$(SolutionDir)
120set Outdir=$(Outdir)
121set Platform=$(PlatformName)
122set Configuration=$(ConfigurationName)
123
124call CreateConsoleApplication.cmd
125call MergeConfigs.cmd
126call CopyAssemblies.cmd
127if exist "%25ProjectDir%25CustomPostBuild.cmd" call CustomPostBuild.cmd</PostBuildEvent>
128  </PropertyGroup>
129</Project>
Note: See TracBrowser for help on using the repository browser.