Free cookie consent management tool by TermsFeed Policy Generator

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

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

Updates service reference. #860 (Deployment server for plugin installation from web locations)

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