Free cookie consent management tool by TermsFeed Policy Generator

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

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

Refreshed service reference in plugin infrastructure. #860 (Deployment server for plugin installation from web locations)

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