Free cookie consent management tool by TermsFeed Policy Generator

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

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

Re-added ICSharpZipLib and replaced main start up code with call to plugin infrastructure start up code. #799

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