Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 1439 was 1439, checked in by msteinbi, 15 years ago

Implemented Cahded Plugin class (#546)

File size: 5.4 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  </PropertyGroup>
22  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
23    <DebugSymbols>true</DebugSymbols>
24    <DebugType>full</DebugType>
25    <Optimize>false</Optimize>
26    <OutputPath>bin\Debug\</OutputPath>
27    <DefineConstants>DEBUG;TRACE</DefineConstants>
28    <ErrorReport>prompt</ErrorReport>
29    <WarningLevel>4</WarningLevel>
30  </PropertyGroup>
31  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
32    <DebugType>pdbonly</DebugType>
33    <Optimize>true</Optimize>
34    <OutputPath>bin\Release\</OutputPath>
35    <DefineConstants>TRACE</DefineConstants>
36    <ErrorReport>prompt</ErrorReport>
37    <WarningLevel>4</WarningLevel>
38    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
39    <DocumentationFile>bin\Release\HeuristicLab.PluginInfrastructure.XML</DocumentationFile>
40  </PropertyGroup>
41  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
42    <DebugSymbols>true</DebugSymbols>
43    <OutputPath>bin\x86\Debug\</OutputPath>
44    <DefineConstants>DEBUG;TRACE</DefineConstants>
45    <DebugType>full</DebugType>
46    <PlatformTarget>x86</PlatformTarget>
47    <ErrorReport>prompt</ErrorReport>
48  </PropertyGroup>
49  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
50    <OutputPath>bin\x86\Release\</OutputPath>
51    <DefineConstants>TRACE</DefineConstants>
52    <DocumentationFile>bin\Release\HeuristicLab.PluginInfrastructure.XML</DocumentationFile>
53    <Optimize>true</Optimize>
54    <DebugType>pdbonly</DebugType>
55    <PlatformTarget>x86</PlatformTarget>
56    <ErrorReport>prompt</ErrorReport>
57  </PropertyGroup>
58  <ItemGroup>
59    <Reference Include="System" />
60    <Reference Include="System.Data" />
61    <Reference Include="System.Deployment" />
62    <Reference Include="System.Drawing" />
63    <Reference Include="System.Windows.Forms" />
64    <Reference Include="System.Xml" />
65  </ItemGroup>
66  <ItemGroup>
67    <Compile Include="ApplicationInfo.cs" />
68    <Compile Include="AssemblyBuildDateAttribute.cs" />
69    <Compile Include="BaseClasses\ApplicationBase.cs" />
70    <Compile Include="BaseClasses\PluginBase.cs" />
71    <Compile Include="CachedPlugin.cs" />
72    <Compile Include="ClassInfoAttribute.cs" />
73    <Compile Include="Interfaces\IApplication.cs" />
74    <Compile Include="Interfaces\IControl.cs" />
75    <Compile Include="Interfaces\IControlManager.cs" />
76    <Compile Include="InvalidPluginException.cs" />
77    <Compile Include="PluginManager.cs" />
78    <Compile Include="PluginManagerActionEventArgs.cs" />
79    <Compile Include="DependencyAttribute.cs" />
80    <Compile Include="Interfaces\IPlugin.cs" />
81    <Compile Include="DiscoveryService.cs" />
82    <Compile Include="PluginFileAttribute.cs" />
83    <Compile Include="PluginInfo.cs" />
84    <Compile Include="Loader.cs" />
85    <Compile Include="Runner.cs" />
86    <Compile Include="Properties\AssemblyInfo.cs" />
87    <EmbeddedResource Include="Properties\Resources.resx">
88      <Generator>ResXFileCodeGenerator</Generator>
89      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
90      <SubType>Designer</SubType>
91    </EmbeddedResource>
92    <Compile Include="Properties\Resources.Designer.cs">
93      <AutoGen>True</AutoGen>
94      <DependentUpon>Resources.resx</DependentUpon>
95      <DesignTime>True</DesignTime>
96    </Compile>
97    <None Include="app.config" />
98    <None Include="HeuristicLab.snk" />
99    <None Include="Properties\AssemblyInfo.frame" />
100    <None Include="Properties\Settings.settings">
101      <Generator>PublicSettingsSingleFileGenerator</Generator>
102      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
103    </None>
104    <Compile Include="Properties\Settings.Designer.cs">
105      <AutoGen>True</AutoGen>
106      <DependentUpon>Settings.settings</DependentUpon>
107      <DesignTimeSharedInput>True</DesignTimeSharedInput>
108    </Compile>
109  </ItemGroup>
110  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
111  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
112       Other similar extension points exist, see Microsoft.Common.targets.
113  <Target Name="BeforeBuild">
114  </Target>
115  <Target Name="AfterBuild">
116  </Target>
117  -->
118  <PropertyGroup>
119    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
120set ProjectDir=$(ProjectDir)
121set SolutionDir=$(SolutionDir)
122set Outdir=$(Outdir)
123
124call PreBuildEvent.cmd</PreBuildEvent>
125  </PropertyGroup>
126</Project>
Note: See TracBrowser for help on using the repository browser.