Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/HeuristicLab.PluginInfrastructure.csproj @ 3624

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

Implemented changes in plugin infrastructure requested by reviewers. #989 (Implement review comments in plugin infrastructure)

File size: 16.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\x86\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\x64\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="ICSharpCode.SharpZipLib, Version=0.85.4.369, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL" />
78    <Reference Include="System" />
79    <Reference Include="System.Core">
80      <RequiredTargetFramework>3.5</RequiredTargetFramework>
81    </Reference>
82    <Reference Include="System.Data" />
83    <Reference Include="System.Deployment" />
84    <Reference Include="System.Drawing" />
85    <Reference Include="System.Runtime.Serialization">
86      <RequiredTargetFramework>3.0</RequiredTargetFramework>
87    </Reference>
88    <Reference Include="System.ServiceModel">
89      <RequiredTargetFramework>3.0</RequiredTargetFramework>
90    </Reference>
91    <Reference Include="System.Windows.Forms" />
92    <Reference Include="System.Xml" />
93  </ItemGroup>
94  <ItemGroup>
95    <Compile Include="Advanced\BasicUpdateView.cs">
96      <SubType>UserControl</SubType>
97    </Compile>
98    <Compile Include="Advanced\BasicUpdateView.Designer.cs">
99      <DependentUpon>BasicUpdateView.cs</DependentUpon>
100    </Compile>
101    <Compile Include="Advanced\ConfirmationDialog.cs">
102      <SubType>Form</SubType>
103    </Compile>
104    <Compile Include="Advanced\ConfirmationDialog.Designer.cs">
105      <DependentUpon>ConfirmationDialog.cs</DependentUpon>
106    </Compile>
107    <Compile Include="Advanced\ConnectionSetupView.cs">
108      <SubType>Form</SubType>
109    </Compile>
110    <Compile Include="Advanced\ConnectionSetupView.Designer.cs">
111      <DependentUpon>ConnectionSetupView.cs</DependentUpon>
112    </Compile>
113    <Compile Include="Advanced\Util.cs" />
114    <Compile Include="Advanced\InstallationManagerControl.cs">
115      <SubType>UserControl</SubType>
116    </Compile>
117    <Compile Include="Advanced\InstallationManagerControl.Designer.cs">
118      <DependentUpon>InstallationManagerControl.cs</DependentUpon>
119    </Compile>
120    <Compile Include="Advanced\InstallationManagerException.cs" />
121    <Compile Include="Advanced\DeploymentService\AdminClientFactory.cs" />
122    <Compile Include="Advanced\DeploymentService\DeploymentService.cs" />
123    <Compile Include="Advanced\DeploymentService\UpdateClientFactory.cs" />
124    <Compile Include="Advanced\InstallationManagerConsole.cs" />
125    <Compile Include="Advanced\InstallationManager.cs" />
126    <Compile Include="Advanced\InstallationManagerForm.cs">
127      <SubType>Form</SubType>
128    </Compile>
129    <Compile Include="Advanced\InstallationManagerForm.Designer.cs">
130      <DependentUpon>InstallationManagerForm.cs</DependentUpon>
131    </Compile>
132    <Compile Include="Advanced\DeploymentService\PluginDescription.cs">
133      <SubType>Code</SubType>
134    </Compile>
135    <Compile Include="Advanced\DeploymentService\ProductDescription.cs">
136      <SubType>Code</SubType>
137    </Compile>
138    <Compile Include="Advanced\IStatusDisplay.cs" />
139    <Compile Include="Advanced\LicenseConfirmationBox.cs">
140      <SubType>Form</SubType>
141    </Compile>
142    <Compile Include="Advanced\LicenseConfirmationBox.Designer.cs">
143      <DependentUpon>LicenseConfirmationBox.cs</DependentUpon>
144    </Compile>
145    <Compile Include="Advanced\LicenseView.cs">
146      <SubType>Form</SubType>
147    </Compile>
148    <Compile Include="Advanced\LicenseView.Designer.cs">
149      <DependentUpon>LicenseView.cs</DependentUpon>
150    </Compile>
151    <Compile Include="Advanced\LocalPluginsView.cs">
152      <SubType>UserControl</SubType>
153    </Compile>
154    <Compile Include="Advanced\LocalPluginsView.Designer.cs">
155      <DependentUpon>LocalPluginsView.cs</DependentUpon>
156    </Compile>
157    <Compile Include="Advanced\MultiSelectListView.cs">
158      <SubType>Component</SubType>
159    </Compile>
160    <Compile Include="Advanced\MultiSelectListView.Designer.cs">
161      <DependentUpon>MultiSelectListView.cs</DependentUpon>
162    </Compile>
163    <Compile Include="Advanced\PluginComparisonView.cs">
164      <SubType>Form</SubType>
165    </Compile>
166    <Compile Include="Advanced\PluginComparisonView.Designer.cs">
167      <DependentUpon>PluginComparisonView.cs</DependentUpon>
168    </Compile>
169    <Compile Include="Advanced\PluginEditor.cs">
170      <SubType>UserControl</SubType>
171    </Compile>
172    <Compile Include="Advanced\PluginEditor.Designer.cs">
173      <DependentUpon>PluginEditor.cs</DependentUpon>
174    </Compile>
175    <Compile Include="Advanced\PluginView.cs">
176      <SubType>Form</SubType>
177    </Compile>
178    <Compile Include="Advanced\PluginView.Designer.cs">
179      <DependentUpon>PluginView.cs</DependentUpon>
180    </Compile>
181    <Compile Include="Advanced\ProductEditor.cs">
182      <SubType>UserControl</SubType>
183    </Compile>
184    <Compile Include="Advanced\ProductEditor.Designer.cs">
185      <DependentUpon>ProductEditor.cs</DependentUpon>
186    </Compile>
187    <Compile Include="Advanced\RemotePluginInstaller.cs">
188      <SubType>UserControl</SubType>
189    </Compile>
190    <Compile Include="Advanced\RemotePluginInstaller.Designer.cs">
191      <DependentUpon>RemotePluginInstaller.cs</DependentUpon>
192    </Compile>
193    <Compile Include="Attributes\ApplicationAttribute.cs" />
194    <Compile Include="Attributes\AssemblyBuildDateAttribute.cs" />
195    <Compile Include="Attributes\ContactInformationAttribute.cs" />
196    <Compile Include="Attributes\PluginAttribute.cs" />
197    <Compile Include="Attributes\PluginDependencyAttribute.cs" />
198    <Compile Include="Attributes\PluginFileAttribute.cs" />
199    <Compile Include="BaseClasses\ApplicationBase.cs" />
200    <Compile Include="BaseClasses\PluginBase.cs" />
201    <Compile Include="DefaultApplicationManager.cs" />
202    <Compile Include="LightweightApplicationManager.cs" />
203    <Compile Include="Interfaces\IPluginFile.cs" />
204    <Compile Include="Interfaces\IApplicationManager.cs" />
205    <Compile Include="Interfaces\IApplicationDescription.cs" />
206    <Compile Include="Interfaces\IApplication.cs" />
207    <Compile Include="Interfaces\IControlManager.cs" />
208    <Compile Include="Interfaces\IPlugin.cs" />
209    <Compile Include="ControlManager.cs" />
210    <Compile Include="Interfaces\IPluginDescription.cs" />
211    <Compile Include="InvalidPluginException.cs" />
212    <Compile Include="Manager\ApplicationDescription.cs" />
213    <Compile Include="Manager\PluginFile.cs" />
214    <Compile Include="Manager\PluginInfrastructureCancelEventArgs.cs" />
215    <Compile Include="Manager\PluginDescription.cs" />
216    <Compile Include="Manager\PluginInfrastructureEventArgs.cs" />
217    <Compile Include="Manager\PluginManager.cs" />
218    <Compile Include="Manager\PluginValidator.cs" />
219    <Compile Include="PluginDescriptionIterator.cs" />
220    <Compile Include="ApplicationManager.cs" />
221    <Compile Include="PluginState.cs" />
222    <Compile Include="Main.cs" />
223    <Compile Include="Properties\AssemblyInfo.cs" />
224    <EmbeddedResource Include="Advanced\InstallationManagerForm.resx">
225      <DependentUpon>InstallationManagerForm.cs</DependentUpon>
226    </EmbeddedResource>
227    <EmbeddedResource Include="Advanced\RemotePluginInstaller.resx">
228      <DependentUpon>RemotePluginInstaller.cs</DependentUpon>
229    </EmbeddedResource>
230    <EmbeddedResource Include="Properties\Resources.resx">
231      <Generator>ResXFileCodeGenerator</Generator>
232      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
233      <SubType>Designer</SubType>
234    </EmbeddedResource>
235    <EmbeddedResource Include="Resources\Resources.resx">
236      <Generator>ResXFileCodeGenerator</Generator>
237      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
238    </EmbeddedResource>
239    <EmbeddedResource Include="Starter\SplashScreen.resx">
240      <DependentUpon>SplashScreen.cs</DependentUpon>
241    </EmbeddedResource>
242    <EmbeddedResource Include="Starter\StarterForm.resx">
243      <DependentUpon>StarterForm.cs</DependentUpon>
244    </EmbeddedResource>
245    <Compile Include="Properties\Resources.Designer.cs">
246      <AutoGen>True</AutoGen>
247      <DependentUpon>Resources.resx</DependentUpon>
248      <DesignTime>True</DesignTime>
249    </Compile>
250    <None Include="app.config" />
251    <None Include="HeuristicLab.snk" />
252    <None Include="Properties\AssemblyInfo.frame" />
253    <None Include="Properties\Settings.settings">
254      <Generator>PublicSettingsSingleFileGenerator</Generator>
255      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
256    </None>
257    <Compile Include="Properties\Settings.Designer.cs">
258      <AutoGen>True</AutoGen>
259      <DependentUpon>Settings.settings</DependentUpon>
260      <DesignTimeSharedInput>True</DesignTimeSharedInput>
261    </Compile>
262    <Compile Include="Resources\Resources.Designer.cs">
263      <AutoGen>True</AutoGen>
264      <DesignTime>True</DesignTime>
265      <DependentUpon>Resources.resx</DependentUpon>
266    </Compile>
267    <Compile Include="Sandboxing\SandboxManager.cs" />
268    <Compile Include="Starter\SplashScreen.cs">
269      <SubType>Form</SubType>
270    </Compile>
271    <Compile Include="Starter\SplashScreen.Designer.cs">
272      <DependentUpon>SplashScreen.cs</DependentUpon>
273    </Compile>
274    <Compile Include="Starter\StarterForm.cs">
275      <SubType>Form</SubType>
276    </Compile>
277    <Compile Include="Starter\StarterForm.Designer.cs">
278      <DependentUpon>StarterForm.cs</DependentUpon>
279    </Compile>
280  </ItemGroup>
281  <ItemGroup>
282    <Content Include="ICSharpCode.SharpZipLib License.txt">
283      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
284    </Content>
285    <Content Include="ICSharpCode.SharpZipLib.dll">
286      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
287    </Content>
288    <Content Include="Resources\Details.gif" />
289    <Content Include="Resources\HeuristicLab.ico" />
290    <Content Include="Resources\LargeIcons.gif" />
291    <Content Include="Resources\List.gif" />
292    <Content Include="Resources\Logo_white.gif" />
293    <EmbeddedResource Include="Advanced\BasicUpdateView.resx">
294      <DependentUpon>BasicUpdateView.cs</DependentUpon>
295    </EmbeddedResource>
296    <EmbeddedResource Include="Advanced\ConfirmationDialog.resx">
297      <DependentUpon>ConfirmationDialog.cs</DependentUpon>
298    </EmbeddedResource>
299    <EmbeddedResource Include="Advanced\ConnectionSetupView.resx">
300      <DependentUpon>ConnectionSetupView.cs</DependentUpon>
301    </EmbeddedResource>
302    <EmbeddedResource Include="Advanced\DeploymentService\servdev.cer" />
303    <EmbeddedResource Include="Advanced\LicenseConfirmationBox.resx">
304      <DependentUpon>LicenseConfirmationBox.cs</DependentUpon>
305    </EmbeddedResource>
306    <EmbeddedResource Include="Advanced\LicenseView.resx">
307      <DependentUpon>LicenseView.cs</DependentUpon>
308    </EmbeddedResource>
309    <EmbeddedResource Include="Advanced\LocalPluginsView.resx">
310      <DependentUpon>LocalPluginsView.cs</DependentUpon>
311    </EmbeddedResource>
312    <EmbeddedResource Include="Advanced\PluginComparisonView.resx">
313      <DependentUpon>PluginComparisonView.cs</DependentUpon>
314    </EmbeddedResource>
315    <EmbeddedResource Include="Advanced\PluginEditor.resx">
316      <DependentUpon>PluginEditor.cs</DependentUpon>
317    </EmbeddedResource>
318    <EmbeddedResource Include="Advanced\PluginView.resx">
319      <DependentUpon>PluginView.cs</DependentUpon>
320    </EmbeddedResource>
321    <EmbeddedResource Include="Advanced\ProductEditor.resx">
322      <DependentUpon>ProductEditor.cs</DependentUpon>
323    </EmbeddedResource>
324    <None Include="Resources\VS2008ImageLibrary_Actions_Delete.png" />
325    <None Include="Resources\VS2008ImageLibrary_CommonElements_Actions_Remove.png" />
326    <None Include="Resources\VS2008ImageLibrary_CommonElements_Actions_Remove1.png" />
327    <None Include="Resources\show_icons.png" />
328    <None Include="Resources\show_details.png" />
329    <None Include="Resources\plugin.png" />
330    <None Include="Resources\plugin_16.png" />
331    <None Include="Resources\Setup_Install.ico" />
332    <None Include="Resources\RepeatHS.bmp" />
333    <None Include="Resources\Repeat.bmp" />
334    <None Include="Resources\RepeatHS.png" />
335    <None Include="Resources\PublishToWebHS.png" />
336    <Content Include="Resources\VS2008ImageLibrary_CommonElements_Objects_Arrow_Down.png" />
337    <None Include="Resources\VS2008ImageLibrary_Objects_NetworkConnections.png" />
338    <None Include="Resources\VS2008ImageLibrary_Objects_Install1.png" />
339    <None Include="Resources\VS2008ImageLibrary_Objects_Internet1.png" />
340    <None Include="Resources\VS2008ImageLibrary_CommonElements_Objects_Arrow_Up.png" />
341    <None Include="Resources\VS2008ImageLibrary_Objects_File.png" />
342    <None Include="Resources\VS2008ImageLibrary_Objects_Document.png" />
343    <None Include="Resources\VS2008ImageLibrary_Objects_Internet.png" />
344    <None Include="Resources\VS2008ImageLibrary_Objects_Install.png" />
345    <None Include="Resources\VS2008ImageLibrary_Objects_Assembly.png" />
346    <None Include="Advanced\DeploymentService\RegenerateServiceClasses.cmd" />
347  </ItemGroup>
348  <ItemGroup>
349    <WCFMetadata Include="Service References\" />
350  </ItemGroup>
351  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
352  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
353       Other similar extension points exist, see Microsoft.Common.targets.
354  <Target Name="BeforeBuild">
355  </Target>
356  <Target Name="AfterBuild">
357  </Target>
358  -->
359  <PropertyGroup>
360    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
361set ProjectDir=$(ProjectDir)
362set SolutionDir=$(SolutionDir)
363set Outdir=$(Outdir)
364
365call PreBuildEvent.cmd</PreBuildEvent>
366  </PropertyGroup>
367</Project>
Note: See TracBrowser for help on using the repository browser.