Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 3508 was 3508, checked in by gkronber, 15 years ago

Worked on review comments by swagner. #989 (Implement review comments in plugin infrastructure)

File size: 14.8 KB
RevLine 
[2]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>
[858]5    <ProductVersion>9.0.30729</ProductVersion>
[2]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>
[2475]21    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
[2]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>
[564]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>
[2900]53    <DocumentationFile>bin\x86\Release\HeuristicLab.PluginInfrastructure.XML</DocumentationFile>
[564]54    <Optimize>true</Optimize>
55    <DebugType>pdbonly</DebugType>
56    <PlatformTarget>x86</PlatformTarget>
57    <ErrorReport>prompt</ErrorReport>
58  </PropertyGroup>
[1474]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>
[2900]70    <DocumentationFile>bin\x64\Release\HeuristicLab.PluginInfrastructure.XML</DocumentationFile>
[1474]71    <Optimize>true</Optimize>
72    <DebugType>pdbonly</DebugType>
73    <PlatformTarget>x64</PlatformTarget>
74    <ErrorReport>prompt</ErrorReport>
75  </PropertyGroup>
[2]76  <ItemGroup>
[2922]77    <Reference Include="ICSharpCode.SharpZipLib, Version=0.85.4.369, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL" />
[2]78    <Reference Include="System" />
[2475]79    <Reference Include="System.Core">
80      <RequiredTargetFramework>3.5</RequiredTargetFramework>
81    </Reference>
[2]82    <Reference Include="System.Data" />
83    <Reference Include="System.Deployment" />
84    <Reference Include="System.Drawing" />
[2517]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>
[2]91    <Reference Include="System.Windows.Forms" />
92    <Reference Include="System.Xml" />
93  </ItemGroup>
94  <ItemGroup>
[3069]95    <Compile Include="Advanced\ConfirmationDialog.cs">
96      <SubType>Form</SubType>
97    </Compile>
98    <Compile Include="Advanced\ConfirmationDialog.Designer.cs">
99      <DependentUpon>ConfirmationDialog.cs</DependentUpon>
100    </Compile>
[3006]101    <Compile Include="Advanced\ConnectionSetupView.cs">
[3474]102      <SubType>Form</SubType>
[3006]103    </Compile>
104    <Compile Include="Advanced\ConnectionSetupView.Designer.cs">
105      <DependentUpon>ConnectionSetupView.cs</DependentUpon>
106    </Compile>
[3508]107    <Compile Include="Advanced\InstallationManagerException.cs" />
[3006]108    <Compile Include="Advanced\DeploymentService\AdminClientFactory.cs" />
[2811]109    <Compile Include="Advanced\DeploymentService\DeploymentService.cs" />
[3006]110    <Compile Include="Advanced\DeploymentService\UpdateClientFactory.cs" />
[2517]111    <Compile Include="Advanced\InstallationManagerConsole.cs" />
[2513]112    <Compile Include="Advanced\InstallationManager.cs" />
[2748]113    <Compile Include="Advanced\InstallationManagerForm.cs">
114      <SubType>Form</SubType>
115    </Compile>
116    <Compile Include="Advanced\InstallationManagerForm.Designer.cs">
117      <DependentUpon>InstallationManagerForm.cs</DependentUpon>
118    </Compile>
[2811]119    <Compile Include="Advanced\DeploymentService\PluginDescription.cs">
120      <SubType>Code</SubType>
121    </Compile>
122    <Compile Include="Advanced\DeploymentService\ProductDescription.cs">
123      <SubType>Code</SubType>
124    </Compile>
[3006]125    <Compile Include="Advanced\LicenseConfirmationBox.cs">
126      <SubType>Form</SubType>
127    </Compile>
128    <Compile Include="Advanced\LicenseConfirmationBox.Designer.cs">
129      <DependentUpon>LicenseConfirmationBox.cs</DependentUpon>
130    </Compile>
131    <Compile Include="Advanced\LicenseView.cs">
[3474]132      <SubType>Form</SubType>
[3006]133    </Compile>
134    <Compile Include="Advanced\LicenseView.Designer.cs">
135      <DependentUpon>LicenseView.cs</DependentUpon>
136    </Compile>
[2922]137    <Compile Include="Advanced\LocalPluginManager.cs">
138      <SubType>UserControl</SubType>
139    </Compile>
140    <Compile Include="Advanced\LocalPluginManager.Designer.cs">
141      <DependentUpon>LocalPluginManager.cs</DependentUpon>
142    </Compile>
[3068]143    <Compile Include="Advanced\MultiSelectListView.cs">
144      <SubType>Component</SubType>
145    </Compile>
146    <Compile Include="Advanced\MultiSelectListView.Designer.cs">
147      <DependentUpon>MultiSelectListView.cs</DependentUpon>
148    </Compile>
[3474]149    <Compile Include="Advanced\PluginListView.cs">
150      <SubType>UserControl</SubType>
151    </Compile>
152    <Compile Include="Advanced\PluginListView.Designer.cs">
153      <DependentUpon>PluginListView.cs</DependentUpon>
154    </Compile>
[3006]155    <Compile Include="Advanced\PluginView.cs">
156      <SubType>UserControl</SubType>
157    </Compile>
158    <Compile Include="Advanced\PluginView.Designer.cs">
159      <DependentUpon>PluginView.cs</DependentUpon>
160    </Compile>
[2922]161    <Compile Include="Advanced\RemotePluginInstaller.cs">
162      <SubType>UserControl</SubType>
163    </Compile>
164    <Compile Include="Advanced\RemotePluginInstaller.Designer.cs">
165      <DependentUpon>RemotePluginInstaller.cs</DependentUpon>
166    </Compile>
[2488]167    <Compile Include="Attributes\ApplicationAttribute.cs" />
[2475]168    <Compile Include="Attributes\AssemblyBuildDateAttribute.cs" />
[2778]169    <Compile Include="Attributes\ContactInformationAttribute.cs" />
[2488]170    <Compile Include="Attributes\PluginAttribute.cs" />
[2475]171    <Compile Include="Attributes\PluginDependencyAttribute.cs" />
172    <Compile Include="Attributes\PluginFileAttribute.cs" />
[2]173    <Compile Include="BaseClasses\ApplicationBase.cs" />
174    <Compile Include="BaseClasses\PluginBase.cs" />
[3247]175    <Compile Include="DefaultApplicationManager.cs" />
176    <Compile Include="LightweightApplicationManager.cs" />
[2688]177    <Compile Include="Interfaces\IPluginFile.cs" />
[2488]178    <Compile Include="Interfaces\IApplicationManager.cs" />
179    <Compile Include="Interfaces\IApplicationDescription.cs" />
[2]180    <Compile Include="Interfaces\IApplication.cs" />
181    <Compile Include="Interfaces\IControlManager.cs" />
182    <Compile Include="Interfaces\IPlugin.cs" />
[2481]183    <Compile Include="ControlManager.cs" />
[2488]184    <Compile Include="Interfaces\IPluginDescription.cs" />
[2481]185    <Compile Include="InvalidPluginException.cs" />
[2504]186    <Compile Include="Manager\ApplicationDescription.cs" />
[2688]187    <Compile Include="Manager\PluginFile.cs" />
[2517]188    <Compile Include="Manager\PluginInfrastructureCancelEventArgs.cs" />
[2504]189    <Compile Include="Manager\PluginDescription.cs" />
190    <Compile Include="Manager\PluginInfrastructureEventArgs.cs" />
191    <Compile Include="Manager\PluginManager.cs" />
192    <Compile Include="Manager\PluginValidator.cs" />
[2488]193    <Compile Include="PluginDescriptionIterator.cs" />
194    <Compile Include="ApplicationManager.cs" />
195    <Compile Include="PluginState.cs" />
[2599]196    <Compile Include="Main.cs" />
[2]197    <Compile Include="Properties\AssemblyInfo.cs" />
[2748]198    <EmbeddedResource Include="Advanced\InstallationManagerForm.resx">
199      <DependentUpon>InstallationManagerForm.cs</DependentUpon>
200    </EmbeddedResource>
[2922]201    <EmbeddedResource Include="Advanced\LocalPluginManager.resx">
202      <DependentUpon>LocalPluginManager.cs</DependentUpon>
203    </EmbeddedResource>
204    <EmbeddedResource Include="Advanced\RemotePluginInstaller.resx">
205      <DependentUpon>RemotePluginInstaller.cs</DependentUpon>
206    </EmbeddedResource>
[2]207    <EmbeddedResource Include="Properties\Resources.resx">
208      <Generator>ResXFileCodeGenerator</Generator>
209      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
210      <SubType>Designer</SubType>
211    </EmbeddedResource>
[2922]212    <EmbeddedResource Include="Resources\Resources.resx">
213      <Generator>ResXFileCodeGenerator</Generator>
214      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
215    </EmbeddedResource>
[2504]216    <EmbeddedResource Include="Starter\SplashScreen.resx">
217      <DependentUpon>SplashScreen.cs</DependentUpon>
218    </EmbeddedResource>
[2507]219    <EmbeddedResource Include="Starter\StarterForm.resx">
220      <DependentUpon>StarterForm.cs</DependentUpon>
221    </EmbeddedResource>
[2]222    <Compile Include="Properties\Resources.Designer.cs">
223      <AutoGen>True</AutoGen>
224      <DependentUpon>Resources.resx</DependentUpon>
225      <DesignTime>True</DesignTime>
226    </Compile>
227    <None Include="app.config" />
228    <None Include="HeuristicLab.snk" />
[30]229    <None Include="Properties\AssemblyInfo.frame" />
[2]230    <None Include="Properties\Settings.settings">
[854]231      <Generator>PublicSettingsSingleFileGenerator</Generator>
[2]232      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
233    </None>
234    <Compile Include="Properties\Settings.Designer.cs">
235      <AutoGen>True</AutoGen>
236      <DependentUpon>Settings.settings</DependentUpon>
237      <DesignTimeSharedInput>True</DesignTimeSharedInput>
238    </Compile>
[2922]239    <Compile Include="Resources\Resources.Designer.cs">
240      <AutoGen>True</AutoGen>
241      <DesignTime>True</DesignTime>
242      <DependentUpon>Resources.resx</DependentUpon>
243    </Compile>
[2592]244    <Compile Include="Sandboxing\SandboxManager.cs" />
[2504]245    <Compile Include="Starter\SplashScreen.cs">
246      <SubType>Form</SubType>
247    </Compile>
248    <Compile Include="Starter\SplashScreen.Designer.cs">
249      <DependentUpon>SplashScreen.cs</DependentUpon>
250    </Compile>
[2507]251    <Compile Include="Starter\StarterForm.cs">
252      <SubType>Form</SubType>
253    </Compile>
254    <Compile Include="Starter\StarterForm.Designer.cs">
255      <DependentUpon>StarterForm.cs</DependentUpon>
256    </Compile>
[2]257  </ItemGroup>
[2503]258  <ItemGroup>
[2600]259    <Content Include="ICSharpCode.SharpZipLib License.txt">
260      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
261    </Content>
262    <Content Include="ICSharpCode.SharpZipLib.dll">
263      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
264    </Content>
[2504]265    <Content Include="Resources\Details.gif" />
266    <Content Include="Resources\HeuristicLab.ico" />
267    <Content Include="Resources\LargeIcons.gif" />
268    <Content Include="Resources\List.gif" />
269    <Content Include="Resources\Logo_white.gif" />
[3069]270    <EmbeddedResource Include="Advanced\ConfirmationDialog.resx">
271      <DependentUpon>ConfirmationDialog.cs</DependentUpon>
272    </EmbeddedResource>
[3006]273    <EmbeddedResource Include="Advanced\ConnectionSetupView.resx">
274      <DependentUpon>ConnectionSetupView.cs</DependentUpon>
275    </EmbeddedResource>
276    <EmbeddedResource Include="Advanced\DeploymentService\servdev.cer" />
277    <EmbeddedResource Include="Advanced\LicenseConfirmationBox.resx">
278      <DependentUpon>LicenseConfirmationBox.cs</DependentUpon>
279    </EmbeddedResource>
280    <EmbeddedResource Include="Advanced\LicenseView.resx">
281      <DependentUpon>LicenseView.cs</DependentUpon>
282    </EmbeddedResource>
[3474]283    <EmbeddedResource Include="Advanced\PluginListView.resx">
284      <DependentUpon>PluginListView.cs</DependentUpon>
285    </EmbeddedResource>
[3006]286    <EmbeddedResource Include="Advanced\PluginView.resx">
287      <DependentUpon>PluginView.cs</DependentUpon>
288    </EmbeddedResource>
[2922]289    <None Include="Resources\VS2008ImageLibrary_Actions_Delete.png" />
290    <None Include="Resources\VS2008ImageLibrary_CommonElements_Actions_Remove.png" />
[3508]291    <None Include="Resources\VS2008ImageLibrary_CommonElements_Actions_Remove1.png" />
[2922]292    <Content Include="Resources\VS2008ImageLibrary_CommonElements_Objects_Arrow_Down.png" />
[3508]293    <None Include="Resources\VS2008ImageLibrary_Objects_NetworkConnections.png" />
294    <None Include="Resources\VS2008ImageLibrary_Objects_Install1.png" />
295    <None Include="Resources\VS2008ImageLibrary_Objects_Internet1.png" />
[3474]296    <None Include="Resources\VS2008ImageLibrary_CommonElements_Objects_Arrow_Up.png" />
[3006]297    <None Include="Resources\VS2008ImageLibrary_Objects_File.png" />
298    <None Include="Resources\VS2008ImageLibrary_Objects_Document.png" />
[2922]299    <None Include="Resources\VS2008ImageLibrary_Objects_Internet.png" />
300    <None Include="Resources\VS2008ImageLibrary_Objects_Install.png" />
301    <None Include="Resources\VS2008ImageLibrary_Objects_Assembly.png" />
[2811]302    <None Include="Advanced\DeploymentService\RegenerateServiceClasses.cmd" />
[2503]303  </ItemGroup>
[2517]304  <ItemGroup>
305    <WCFMetadata Include="Service References\" />
306  </ItemGroup>
[2]307  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
308  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
309       Other similar extension points exist, see Microsoft.Common.targets.
310  <Target Name="BeforeBuild">
311  </Target>
312  <Target Name="AfterBuild">
313  </Target>
314  -->
[30]315  <PropertyGroup>
[852]316    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
317set ProjectDir=$(ProjectDir)
318set SolutionDir=$(SolutionDir)
319set Outdir=$(Outdir)
320
321call PreBuildEvent.cmd</PreBuildEvent>
[30]322  </PropertyGroup>
[2]323</Project>
Note: See TracBrowser for help on using the repository browser.