Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab/HeuristicLab.csproj @ 5

Last change on this file since 5 was 2, checked in by swagner, 17 years ago

Added HeuristicLab 3.0 sources from former SVN repository at revision 52

File size: 5.1 KB
Line 
1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
2  <PropertyGroup>
3    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5    <ProductVersion>9.0.21022</ProductVersion>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{623FB817-8371-4A9A-A491-4DECC87B2BBB}</ProjectGuid>
8    <OutputType>WinExe</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab</RootNamespace>
11    <AssemblyName>HeuristicLab</AssemblyName>
12    <SignAssembly>true</SignAssembly>
13    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
14    <ApplicationIcon>HeuristicLab.ico</ApplicationIcon>
15    <FileUpgradeFlags>
16    </FileUpgradeFlags>
17    <OldToolsVersion>2.0</OldToolsVersion>
18    <UpgradeBackupLocation>
19    </UpgradeBackupLocation>
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    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
38  </PropertyGroup>
39  <ItemGroup>
40    <Reference Include="System" />
41    <Reference Include="System.Data" />
42    <Reference Include="System.Deployment" />
43    <Reference Include="System.Drawing" />
44    <Reference Include="System.Windows.Forms" />
45    <Reference Include="System.Xml" />
46  </ItemGroup>
47  <ItemGroup>
48    <Compile Include="MainForm.cs">
49      <SubType>Form</SubType>
50    </Compile>
51    <Compile Include="MainForm.Designer.cs">
52      <DependentUpon>MainForm.cs</DependentUpon>
53    </Compile>
54    <Compile Include="Program.cs" />
55    <Compile Include="Properties\AssemblyInfo.cs" />
56    <EmbeddedResource Include="MainForm.resx">
57      <DependentUpon>MainForm.cs</DependentUpon>
58      <SubType>Designer</SubType>
59    </EmbeddedResource>
60    <EmbeddedResource Include="Properties\Resources.resx">
61      <Generator>ResXFileCodeGenerator</Generator>
62      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
63      <SubType>Designer</SubType>
64    </EmbeddedResource>
65    <EmbeddedResource Include="SplashScreen.resx">
66      <DependentUpon>SplashScreen.cs</DependentUpon>
67      <SubType>Designer</SubType>
68    </EmbeddedResource>
69    <Compile Include="Properties\Resources.Designer.cs">
70      <AutoGen>True</AutoGen>
71      <DependentUpon>Resources.resx</DependentUpon>
72      <DesignTime>True</DesignTime>
73    </Compile>
74    <None Include="HeuristicLab.snk" />
75    <None Include="Properties\Settings.settings">
76      <Generator>SettingsSingleFileGenerator</Generator>
77      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
78    </None>
79    <None Include="UpdateAssemblies.cmd" />
80    <Compile Include="Properties\Settings.Designer.cs">
81      <AutoGen>True</AutoGen>
82      <DependentUpon>Settings.settings</DependentUpon>
83      <DesignTimeSharedInput>True</DesignTimeSharedInput>
84    </Compile>
85    <Compile Include="SplashScreen.cs">
86      <SubType>Form</SubType>
87    </Compile>
88    <Compile Include="SplashScreen.Designer.cs">
89      <DependentUpon>SplashScreen.cs</DependentUpon>
90    </Compile>
91  </ItemGroup>
92  <ItemGroup>
93    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure.GUI\HeuristicLab.PluginInfrastructure.GUI.csproj">
94      <Project>{D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}</Project>
95      <Name>HeuristicLab.PluginInfrastructure.GUI</Name>
96    </ProjectReference>
97    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
98      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
99      <Name>HeuristicLab.PluginInfrastructure</Name>
100    </ProjectReference>
101  </ItemGroup>
102  <ItemGroup>
103    <Content Include="HeuristicLab.ico" />
104    <Content Include="Resources\HeuristicLab.ico" />
105    <None Include="app.config" />
106    <None Include="Resources\LargeIcons.gif" />
107    <None Include="Resources\Details.gif" />
108    <None Include="Resources\List.gif" />
109    <None Include="Resources\Logo_white.gif" />
110  </ItemGroup>
111  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
112  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
113       Other similar extension points exist, see Microsoft.Common.targets.
114  <Target Name="BeforeBuild">
115  </Target>
116  <Target Name="AfterBuild">
117  </Target>
118  -->
119  <PropertyGroup>
120    <PostBuildEvent>cmd /c ..\..\UpdateAssemblies.cmd $(ConfigurationName)</PostBuildEvent>
121  </PropertyGroup>
122</Project>
Note: See TracBrowser for help on using the repository browser.