Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 39 was 39, checked in by swagner, 16 years ago

Worked on post-build scripts

File size: 5.3 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    <Compile Include="Properties\Settings.Designer.cs">
80      <AutoGen>True</AutoGen>
81      <DependentUpon>Settings.settings</DependentUpon>
82      <DesignTimeSharedInput>True</DesignTimeSharedInput>
83    </Compile>
84    <Compile Include="SplashScreen.cs">
85      <SubType>Form</SubType>
86    </Compile>
87    <Compile Include="SplashScreen.Designer.cs">
88      <DependentUpon>SplashScreen.cs</DependentUpon>
89    </Compile>
90  </ItemGroup>
91  <ItemGroup>
92    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure.GUI\HeuristicLab.PluginInfrastructure.GUI.csproj">
93      <Project>{D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}</Project>
94      <Name>HeuristicLab.PluginInfrastructure.GUI</Name>
95    </ProjectReference>
96    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
97      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
98      <Name>HeuristicLab.PluginInfrastructure</Name>
99    </ProjectReference>
100  </ItemGroup>
101  <ItemGroup>
102    <Content Include="HeuristicLab.ico" />
103    <Content Include="Resources\HeuristicLab.ico" />
104    <None Include="app.config" />
105    <None Include="CopyAssemblies.cmd" />
106    <None Include="Properties\AssemblyInfo.frame" />
107    <None Include="Resources\LargeIcons.gif" />
108    <None Include="Resources\Details.gif" />
109    <None Include="Resources\List.gif" />
110    <None Include="Resources\Logo_white.gif" />
111    <None Include="UpdateLocalInstallation.cmd" />
112  </ItemGroup>
113  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
114  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
115       Other similar extension points exist, see Microsoft.Common.targets.
116  <Target Name="BeforeBuild">
117  </Target>
118  <Target Name="AfterBuild">
119  </Target>
120  -->
121  <PropertyGroup>
122    <PostBuildEvent>cmd /c ..\..\CopyAssemblies.cmd $(ConfigurationName)
123cmd /c ..\..\UpdateLocalInstallation.cmd $(ConfigurationName)</PostBuildEvent>
124    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
125  </PropertyGroup>
126</Project>
Note: See TracBrowser for help on using the repository browser.