Free cookie consent management tool by TermsFeed Policy Generator

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

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

Fixed issues in plugin infrastructure as identified by abeham. #863 (Code review)

File size: 10.6 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.Runtime.Serialization">
85      <RequiredTargetFramework>3.0</RequiredTargetFramework>
86    </Reference>
87    <Reference Include="System.ServiceModel">
88      <RequiredTargetFramework>3.0</RequiredTargetFramework>
89    </Reference>
90    <Reference Include="System.Windows.Forms" />
91    <Reference Include="System.Xml" />
92  </ItemGroup>
93  <ItemGroup>
94    <Compile Include="Advanced\InstallationManagerConsole.cs" />
95    <Compile Include="Advanced\InstallationManager.cs" />
96    <Compile Include="Advanced\InstallationManagerForm.cs">
97      <SubType>Form</SubType>
98    </Compile>
99    <Compile Include="Advanced\InstallationManagerForm.Designer.cs">
100      <DependentUpon>InstallationManagerForm.cs</DependentUpon>
101    </Compile>
102    <Compile Include="Attributes\ApplicationAttribute.cs" />
103    <Compile Include="Attributes\AssemblyBuildDateAttribute.cs" />
104    <Compile Include="Attributes\PluginAttribute.cs" />
105    <Compile Include="Attributes\PluginDependencyAttribute.cs" />
106    <Compile Include="Attributes\PluginFileAttribute.cs" />
107    <Compile Include="BaseClasses\ApplicationBase.cs" />
108    <Compile Include="BaseClasses\PluginBase.cs" />
109    <Compile Include="Interfaces\IPluginFile.cs" />
110    <Compile Include="Interfaces\IApplicationManager.cs" />
111    <Compile Include="Interfaces\IApplicationDescription.cs" />
112    <Compile Include="Interfaces\IApplication.cs" />
113    <Compile Include="Interfaces\IControlManager.cs" />
114    <Compile Include="Interfaces\IPlugin.cs" />
115    <Compile Include="ControlManager.cs" />
116    <Compile Include="Interfaces\IPluginDescription.cs" />
117    <Compile Include="InvalidPluginException.cs" />
118    <Compile Include="Manager\ApplicationDescription.cs" />
119    <Compile Include="Manager\PluginFile.cs" />
120    <Compile Include="Manager\PluginInfrastructureCancelEventArgs.cs" />
121    <Compile Include="Manager\PluginDescription.cs" />
122    <Compile Include="Manager\PluginInfrastructureEventArgs.cs" />
123    <Compile Include="Manager\PluginManager.cs" />
124    <Compile Include="Manager\PluginValidator.cs" />
125    <Compile Include="PluginDescriptionIterator.cs" />
126    <Compile Include="ApplicationManager.cs" />
127    <Compile Include="PluginState.cs" />
128    <Compile Include="Main.cs" />
129    <Compile Include="Properties\AssemblyInfo.cs" />
130    <EmbeddedResource Include="Advanced\InstallationManagerForm.resx">
131      <DependentUpon>InstallationManagerForm.cs</DependentUpon>
132    </EmbeddedResource>
133    <EmbeddedResource Include="Properties\Resources.resx">
134      <Generator>ResXFileCodeGenerator</Generator>
135      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
136      <SubType>Designer</SubType>
137    </EmbeddedResource>
138    <EmbeddedResource Include="Starter\SplashScreen.resx">
139      <DependentUpon>SplashScreen.cs</DependentUpon>
140    </EmbeddedResource>
141    <EmbeddedResource Include="Starter\StarterForm.resx">
142      <DependentUpon>StarterForm.cs</DependentUpon>
143    </EmbeddedResource>
144    <Compile Include="Properties\Resources.Designer.cs">
145      <AutoGen>True</AutoGen>
146      <DependentUpon>Resources.resx</DependentUpon>
147      <DesignTime>True</DesignTime>
148    </Compile>
149    <None Include="app.config" />
150    <None Include="HeuristicLab.snk" />
151    <None Include="Properties\AssemblyInfo.frame" />
152    <None Include="Properties\Settings.settings">
153      <Generator>PublicSettingsSingleFileGenerator</Generator>
154      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
155    </None>
156    <None Include="Service References\UpdateLocationReference\UpdateLocation.xsd" />
157    <None Include="Service References\UpdateLocationReference\UpdateLocation1.xsd" />
158    <Compile Include="Properties\Settings.Designer.cs">
159      <AutoGen>True</AutoGen>
160      <DependentUpon>Settings.settings</DependentUpon>
161      <DesignTimeSharedInput>True</DesignTimeSharedInput>
162    </Compile>
163    <Compile Include="Sandboxing\SandboxManager.cs" />
164    <Compile Include="Service References\UpdateLocationReference\Reference.cs">
165      <AutoGen>True</AutoGen>
166      <DesignTime>True</DesignTime>
167      <DependentUpon>Reference.svcmap</DependentUpon>
168    </Compile>
169    <Compile Include="Starter\SplashScreen.cs">
170      <SubType>Form</SubType>
171    </Compile>
172    <Compile Include="Starter\SplashScreen.Designer.cs">
173      <DependentUpon>SplashScreen.cs</DependentUpon>
174    </Compile>
175    <Compile Include="Starter\StarterForm.cs">
176      <SubType>Form</SubType>
177    </Compile>
178    <Compile Include="Starter\StarterForm.Designer.cs">
179      <DependentUpon>StarterForm.cs</DependentUpon>
180    </Compile>
181  </ItemGroup>
182  <ItemGroup>
183    <Content Include="ICSharpCode.SharpZipLib License.txt">
184      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
185    </Content>
186    <Content Include="ICSharpCode.SharpZipLib.dll">
187      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
188    </Content>
189    <Content Include="Resources\Details.gif" />
190    <Content Include="Resources\HeuristicLab.ico" />
191    <Content Include="Resources\LargeIcons.gif" />
192    <Content Include="Resources\List.gif" />
193    <Content Include="Resources\Logo_white.gif" />
194    <None Include="Service References\UpdateLocationReference\HeuristicLab.PluginInfrastructure.UpdateLocationReference.PluginInformation.datasource">
195      <DependentUpon>Reference.svcmap</DependentUpon>
196    </None>
197    <None Include="Service References\UpdateLocationReference\Reference.svcmap">
198      <Generator>WCF Proxy Generator</Generator>
199      <LastGenOutput>Reference.cs</LastGenOutput>
200    </None>
201    <None Include="Service References\UpdateLocationReference\configuration.svcinfo" />
202    <None Include="Service References\UpdateLocationReference\configuration91.svcinfo" />
203    <None Include="Service References\UpdateLocationReference\UpdateLocation.disco" />
204    <None Include="Service References\UpdateLocationReference\UpdateLocation.wsdl" />
205    <None Include="Service References\UpdateLocationReference\UpdateLocation2.xsd" />
206    <None Include="Service References\UpdateLocationReference\UpdateLocation3.xsd" />
207    <None Include="Service References\UpdateLocationReference\UpdateLocation4.xsd" />
208  </ItemGroup>
209  <ItemGroup>
210    <WCFMetadata Include="Service References\" />
211  </ItemGroup>
212  <ItemGroup>
213    <WCFMetadataStorage Include="Service References\UpdateLocationReference\" />
214  </ItemGroup>
215  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
216  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
217       Other similar extension points exist, see Microsoft.Common.targets.
218  <Target Name="BeforeBuild">
219  </Target>
220  <Target Name="AfterBuild">
221  </Target>
222  -->
223  <PropertyGroup>
224    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
225set ProjectDir=$(ProjectDir)
226set SolutionDir=$(SolutionDir)
227set Outdir=$(Outdir)
228
229call PreBuildEvent.cmd</PreBuildEvent>
230  </PropertyGroup>
231</Project>
Note: See TracBrowser for help on using the repository browser.