Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PluginInfrastructure Refactoring/HeuristicLab.PluginInfrastructure/HeuristicLab.PluginInfrastructure.csproj @ 2507

Last change on this file since 2507 was 2507, checked in by gkronber, 14 years ago

Renamed MainForm to StarterForm and added possibility to start a specific application from the command line. #799

File size: 7.7 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.30729</ProductVersion>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{94186A6A-5176-4402-AE83-886557B53CCA}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.PluginInfrastructure</RootNamespace>
11    <AssemblyName>HeuristicLab.PluginInfrastructure</AssemblyName>
12    <StartupObject>
13    </StartupObject>
14    <SignAssembly>true</SignAssembly>
15    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
16    <FileUpgradeFlags>
17    </FileUpgradeFlags>
18    <OldToolsVersion>2.0</OldToolsVersion>
19    <UpgradeBackupLocation>
20    </UpgradeBackupLocation>
21    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
22  </PropertyGroup>
23  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
24    <DebugSymbols>true</DebugSymbols>
25    <DebugType>full</DebugType>
26    <Optimize>false</Optimize>
27    <OutputPath>bin\Debug\</OutputPath>
28    <DefineConstants>DEBUG;TRACE</DefineConstants>
29    <ErrorReport>prompt</ErrorReport>
30    <WarningLevel>4</WarningLevel>
31  </PropertyGroup>
32  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
33    <DebugType>pdbonly</DebugType>
34    <Optimize>true</Optimize>
35    <OutputPath>bin\Release\</OutputPath>
36    <DefineConstants>TRACE</DefineConstants>
37    <ErrorReport>prompt</ErrorReport>
38    <WarningLevel>4</WarningLevel>
39    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
40    <DocumentationFile>bin\Release\HeuristicLab.PluginInfrastructure.XML</DocumentationFile>
41  </PropertyGroup>
42  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
43    <DebugSymbols>true</DebugSymbols>
44    <OutputPath>bin\x86\Debug\</OutputPath>
45    <DefineConstants>DEBUG;TRACE</DefineConstants>
46    <DebugType>full</DebugType>
47    <PlatformTarget>x86</PlatformTarget>
48    <ErrorReport>prompt</ErrorReport>
49  </PropertyGroup>
50  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
51    <OutputPath>bin\x86\Release\</OutputPath>
52    <DefineConstants>TRACE</DefineConstants>
53    <DocumentationFile>bin\Release\HeuristicLab.PluginInfrastructure.XML</DocumentationFile>
54    <Optimize>true</Optimize>
55    <DebugType>pdbonly</DebugType>
56    <PlatformTarget>x86</PlatformTarget>
57    <ErrorReport>prompt</ErrorReport>
58  </PropertyGroup>
59  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
60    <DebugSymbols>true</DebugSymbols>
61    <OutputPath>bin\x64\Debug\</OutputPath>
62    <DefineConstants>DEBUG;TRACE</DefineConstants>
63    <DebugType>full</DebugType>
64    <PlatformTarget>x64</PlatformTarget>
65    <ErrorReport>prompt</ErrorReport>
66  </PropertyGroup>
67  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
68    <OutputPath>bin\x64\Release\</OutputPath>
69    <DefineConstants>TRACE</DefineConstants>
70    <DocumentationFile>bin\Release\HeuristicLab.PluginInfrastructure.XML</DocumentationFile>
71    <Optimize>true</Optimize>
72    <DebugType>pdbonly</DebugType>
73    <PlatformTarget>x64</PlatformTarget>
74    <ErrorReport>prompt</ErrorReport>
75  </PropertyGroup>
76  <ItemGroup>
77    <Reference Include="System" />
78    <Reference Include="System.Core">
79      <RequiredTargetFramework>3.5</RequiredTargetFramework>
80    </Reference>
81    <Reference Include="System.Data" />
82    <Reference Include="System.Deployment" />
83    <Reference Include="System.Drawing" />
84    <Reference Include="System.Windows.Forms" />
85    <Reference Include="System.Xml" />
86  </ItemGroup>
87  <ItemGroup>
88    <Compile Include="Attributes\ApplicationAttribute.cs" />
89    <Compile Include="Attributes\AssemblyBuildDateAttribute.cs" />
90    <Compile Include="Attributes\PluginAttribute.cs" />
91    <Compile Include="Attributes\PluginDependencyAttribute.cs" />
92    <Compile Include="Attributes\PluginFileAttribute.cs" />
93    <Compile Include="BaseClasses\ApplicationBase.cs" />
94    <Compile Include="BaseClasses\PluginBase.cs" />
95    <Compile Include="Interfaces\IApplicationManager.cs" />
96    <Compile Include="Interfaces\IApplicationDescription.cs" />
97    <Compile Include="Interfaces\IApplication.cs" />
98    <Compile Include="Interfaces\IControlManager.cs" />
99    <Compile Include="Interfaces\IPlugin.cs" />
100    <Compile Include="ControlManager.cs" />
101    <Compile Include="Interfaces\IPluginDescription.cs" />
102    <Compile Include="InvalidPluginException.cs" />
103    <Compile Include="Manager\ApplicationDescription.cs" />
104    <Compile Include="Manager\DefaultApplicationManager.cs" />
105    <Compile Include="Manager\PluginDescription.cs" />
106    <Compile Include="Manager\PluginInfrastructureEventArgs.cs" />
107    <Compile Include="Manager\PluginManager.cs" />
108    <Compile Include="Manager\PluginValidator.cs" />
109    <Compile Include="PluginDescriptionIterator.cs" />
110    <Compile Include="ApplicationManager.cs" />
111    <Compile Include="PluginState.cs" />
112    <Compile Include="Properties\AssemblyInfo.cs" />
113    <EmbeddedResource Include="Properties\Resources.resx">
114      <Generator>ResXFileCodeGenerator</Generator>
115      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
116      <SubType>Designer</SubType>
117    </EmbeddedResource>
118    <EmbeddedResource Include="Starter\SplashScreen.resx">
119      <DependentUpon>SplashScreen.cs</DependentUpon>
120    </EmbeddedResource>
121    <EmbeddedResource Include="Starter\StarterForm.resx">
122      <DependentUpon>StarterForm.cs</DependentUpon>
123    </EmbeddedResource>
124    <Compile Include="Properties\Resources.Designer.cs">
125      <AutoGen>True</AutoGen>
126      <DependentUpon>Resources.resx</DependentUpon>
127      <DesignTime>True</DesignTime>
128    </Compile>
129    <None Include="app.config" />
130    <None Include="HeuristicLab.snk" />
131    <None Include="Properties\AssemblyInfo.frame" />
132    <None Include="Properties\Settings.settings">
133      <Generator>PublicSettingsSingleFileGenerator</Generator>
134      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
135    </None>
136    <Compile Include="Properties\Settings.Designer.cs">
137      <AutoGen>True</AutoGen>
138      <DependentUpon>Settings.settings</DependentUpon>
139      <DesignTimeSharedInput>True</DesignTimeSharedInput>
140    </Compile>
141    <Compile Include="Starter\SplashScreen.cs">
142      <SubType>Form</SubType>
143    </Compile>
144    <Compile Include="Starter\SplashScreen.Designer.cs">
145      <DependentUpon>SplashScreen.cs</DependentUpon>
146    </Compile>
147    <Compile Include="Starter\StarterForm.cs">
148      <SubType>Form</SubType>
149    </Compile>
150    <Compile Include="Starter\StarterForm.Designer.cs">
151      <DependentUpon>StarterForm.cs</DependentUpon>
152    </Compile>
153  </ItemGroup>
154  <ItemGroup>
155    <Content Include="Resources\Details.gif" />
156    <Content Include="Resources\HeuristicLab.ico" />
157    <Content Include="Resources\LargeIcons.gif" />
158    <Content Include="Resources\List.gif" />
159    <Content Include="Resources\Logo_white.gif" />
160  </ItemGroup>
161  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
162  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
163       Other similar extension points exist, see Microsoft.Common.targets.
164  <Target Name="BeforeBuild">
165  </Target>
166  <Target Name="AfterBuild">
167  </Target>
168  -->
169  <PropertyGroup>
170    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
171set ProjectDir=$(ProjectDir)
172set SolutionDir=$(SolutionDir)
173set Outdir=$(Outdir)
174
175call PreBuildEvent.cmd</PreBuildEvent>
176  </PropertyGroup>
177</Project>
Note: See TracBrowser for help on using the repository browser.