Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard/3.3/HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.csproj @ 7804

Last change on this file since 7804 was 7804, checked in by spimming, 12 years ago

#1807: added PreBuildEvent and enabled signing

File size: 4.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" 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>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{77169FE1-C48A-49AE-A0DD-67921D7835AB}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard</RootNamespace>
12    <AssemblyName>HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <PropertyGroup>
34    <SignAssembly>true</SignAssembly>
35  </PropertyGroup>
36  <PropertyGroup>
37    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
38  </PropertyGroup>
39  <ItemGroup>
40    <Reference Include="System" />
41    <Reference Include="System.Core" />
42    <Reference Include="System.Drawing" />
43    <Reference Include="System.Windows.Forms" />
44    <Reference Include="System.Xml.Linq" />
45    <Reference Include="System.Data.DataSetExtensions" />
46    <Reference Include="Microsoft.CSharp" />
47    <Reference Include="System.Data" />
48    <Reference Include="System.Xml" />
49  </ItemGroup>
50  <ItemGroup>
51    <Compile Include="Controls\EtchedLine.cs">
52      <SubType>UserControl</SubType>
53    </Compile>
54    <Compile Include="Controls\EtchedLine.Designer.cs">
55      <DependentUpon>EtchedLine.cs</DependentUpon>
56    </Compile>
57    <Compile Include="Controls\WizardBanner.cs">
58      <SubType>UserControl</SubType>
59    </Compile>
60    <Compile Include="Controls\WizardBanner.Designer.cs">
61      <DependentUpon>WizardBanner.cs</DependentUpon>
62    </Compile>
63    <Compile Include="Properties\AssemblyInfo.cs" />
64    <Compile Include="Wizard.cs">
65      <SubType>Form</SubType>
66    </Compile>
67    <Compile Include="Wizard.Designer.cs">
68      <DependentUpon>Wizard.cs</DependentUpon>
69    </Compile>
70    <Compile Include="WizardPage.cs">
71      <SubType>UserControl</SubType>
72    </Compile>
73    <Compile Include="WizardPage.Designer.cs">
74      <DependentUpon>WizardPage.cs</DependentUpon>
75    </Compile>
76    <Compile Include="WizardPageEventArgs.cs" />
77  </ItemGroup>
78  <ItemGroup>
79    <EmbeddedResource Include="Controls\EtchedLine.resx">
80      <DependentUpon>EtchedLine.cs</DependentUpon>
81    </EmbeddedResource>
82    <EmbeddedResource Include="Controls\WizardBanner.resx">
83      <DependentUpon>WizardBanner.cs</DependentUpon>
84    </EmbeddedResource>
85    <EmbeddedResource Include="Wizard.resx">
86      <DependentUpon>Wizard.cs</DependentUpon>
87    </EmbeddedResource>
88  </ItemGroup>
89  <ItemGroup>
90    <None Include="HeuristicLab.snk" />
91  </ItemGroup>
92  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
93  <PropertyGroup>
94    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
95set ProjectDir=$(ProjectDir)
96set SolutionDir=$(SolutionDir)
97set Outdir=$(Outdir)
98
99call PreBuildEvent.cmd
100</PreBuildEvent>
101  </PropertyGroup>
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</Project>
Note: See TracBrowser for help on using the repository browser.