Free cookie consent management tool by TermsFeed Policy Generator

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

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

Fixed projects to work with new plugin infrastructure. #799

File size: 9.8 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="Attributes\ApplicationAttribute.cs" />
97    <Compile Include="Attributes\AssemblyBuildDateAttribute.cs" />
98    <Compile Include="Attributes\PluginAttribute.cs" />
99    <Compile Include="Attributes\PluginDependencyAttribute.cs" />
100    <Compile Include="Attributes\PluginFileAttribute.cs" />
101    <Compile Include="BaseClasses\ApplicationBase.cs" />
102    <Compile Include="BaseClasses\PluginBase.cs" />
103    <Compile Include="Interfaces\IApplicationManager.cs" />
104    <Compile Include="Interfaces\IApplicationDescription.cs" />
105    <Compile Include="Interfaces\IApplication.cs" />
106    <Compile Include="Interfaces\IControlManager.cs" />
107    <Compile Include="Interfaces\IPlugin.cs" />
108    <Compile Include="ControlManager.cs" />
109    <Compile Include="Interfaces\IPluginDescription.cs" />
110    <Compile Include="InvalidPluginException.cs" />
111    <Compile Include="Manager\ApplicationDescription.cs" />
112    <Compile Include="Manager\PluginInfrastructureCancelEventArgs.cs" />
113    <Compile Include="Manager\PluginDescription.cs" />
114    <Compile Include="Manager\PluginInfrastructureEventArgs.cs" />
115    <Compile Include="Manager\PluginManager.cs" />
116    <Compile Include="Manager\PluginValidator.cs" />
117    <Compile Include="PluginDescriptionIterator.cs" />
118    <Compile Include="ApplicationManager.cs" />
119    <Compile Include="PluginState.cs" />
120    <Compile Include="Properties\AssemblyInfo.cs" />
121    <EmbeddedResource Include="Properties\Resources.resx">
122      <Generator>ResXFileCodeGenerator</Generator>
123      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
124      <SubType>Designer</SubType>
125    </EmbeddedResource>
126    <EmbeddedResource Include="Starter\SplashScreen.resx">
127      <DependentUpon>SplashScreen.cs</DependentUpon>
128    </EmbeddedResource>
129    <EmbeddedResource Include="Starter\StarterForm.resx">
130      <DependentUpon>StarterForm.cs</DependentUpon>
131    </EmbeddedResource>
132    <Compile Include="Properties\Resources.Designer.cs">
133      <AutoGen>True</AutoGen>
134      <DependentUpon>Resources.resx</DependentUpon>
135      <DesignTime>True</DesignTime>
136    </Compile>
137    <None Include="app.config" />
138    <None Include="HeuristicLab.snk" />
139    <None Include="Properties\AssemblyInfo.frame" />
140    <None Include="Properties\Settings.settings">
141      <Generator>PublicSettingsSingleFileGenerator</Generator>
142      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
143    </None>
144    <None Include="Service References\UpdateLocationReference\UpdateLocation.xsd" />
145    <None Include="Service References\UpdateLocationReference\UpdateLocation1.xsd" />
146    <Compile Include="Properties\Settings.Designer.cs">
147      <AutoGen>True</AutoGen>
148      <DependentUpon>Settings.settings</DependentUpon>
149      <DesignTimeSharedInput>True</DesignTimeSharedInput>
150    </Compile>
151    <Compile Include="Sandboxing\ISandboxManager.cs" />
152    <Compile Include="Sandboxing\SandboxManager.cs" />
153    <Compile Include="Service References\UpdateLocationReference\Reference.cs">
154      <AutoGen>True</AutoGen>
155      <DesignTime>True</DesignTime>
156      <DependentUpon>Reference.svcmap</DependentUpon>
157    </Compile>
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>
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>
170  </ItemGroup>
171  <ItemGroup>
172    <Content Include="Resources\Details.gif" />
173    <Content Include="Resources\HeuristicLab.ico" />
174    <Content Include="Resources\LargeIcons.gif" />
175    <Content Include="Resources\List.gif" />
176    <Content Include="Resources\Logo_white.gif" />
177    <None Include="Service References\UpdateLocationReference\HeuristicLab.PluginInfrastructure.UpdateLocationReference.PluginInformation.datasource">
178      <DependentUpon>Reference.svcmap</DependentUpon>
179    </None>
180    <None Include="Service References\UpdateLocationReference\Reference.svcmap">
181      <Generator>WCF Proxy Generator</Generator>
182      <LastGenOutput>Reference.cs</LastGenOutput>
183    </None>
184    <None Include="Service References\UpdateLocationReference\configuration.svcinfo" />
185    <None Include="Service References\UpdateLocationReference\configuration91.svcinfo" />
186    <None Include="Service References\UpdateLocationReference\UpdateLocation.disco" />
187    <None Include="Service References\UpdateLocationReference\UpdateLocation.wsdl" />
188    <None Include="Service References\UpdateLocationReference\UpdateLocation2.xsd" />
189    <None Include="Service References\UpdateLocationReference\UpdateLocation3.xsd" />
190    <None Include="Service References\UpdateLocationReference\UpdateLocation4.xsd" />
191  </ItemGroup>
192  <ItemGroup>
193    <WCFMetadata Include="Service References\" />
194  </ItemGroup>
195  <ItemGroup>
196    <WCFMetadataStorage Include="Service References\UpdateLocationReference\" />
197  </ItemGroup>
198  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
199  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
200       Other similar extension points exist, see Microsoft.Common.targets.
201  <Target Name="BeforeBuild">
202  </Target>
203  <Target Name="AfterBuild">
204  </Target>
205  -->
206  <PropertyGroup>
207    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
208set ProjectDir=$(ProjectDir)
209set SolutionDir=$(SolutionDir)
210set Outdir=$(Outdir)
211
212call PreBuildEvent.cmd</PreBuildEvent>
213  </PropertyGroup>
214</Project>
Note: See TracBrowser for help on using the repository browser.