Free cookie consent management tool by TermsFeed Policy Generator

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

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

Refactored class Loader in plugin infrastructure. #799

File size: 6.2 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.Windows.Forms" />
85    <Reference Include="System.Xml" />
86  </ItemGroup>
87  <ItemGroup>
88    <Compile Include="Attributes\ApplicationDescriptionAttribute.cs" />
89    <Compile Include="Attributes\AssemblyBuildDateAttribute.cs" />
90    <Compile Include="Attributes\PluginDependencyAttribute.cs" />
91    <Compile Include="Attributes\PluginDescriptionAttribute.cs" />
92    <Compile Include="Attributes\PluginFileAttribute.cs" />
93    <Compile Include="BaseClasses\ApplicationBase.cs" />
94    <Compile Include="BaseClasses\PluginBase.cs" />
95    <Compile Include="Interfaces\IApplication.cs" />
96    <Compile Include="Interfaces\IControl.cs" />
97    <Compile Include="Interfaces\IControlManager.cs" />
98    <Compile Include="Interfaces\IPlugin.cs" />
99    <Compile Include="DiscoveryService.cs" />
100    <Compile Include="ControlManager.cs" />
101    <Compile Include="InvalidPluginException.cs" />
102    <Compile Include="Properties\AssemblyInfo.cs" />
103    <EmbeddedResource Include="Properties\Resources.resx">
104      <Generator>ResXFileCodeGenerator</Generator>
105      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
106      <SubType>Designer</SubType>
107    </EmbeddedResource>
108    <Compile Include="Properties\Resources.Designer.cs">
109      <AutoGen>True</AutoGen>
110      <DependentUpon>Resources.resx</DependentUpon>
111      <DesignTime>True</DesignTime>
112    </Compile>
113    <None Include="app.config" />
114    <None Include="HeuristicLab.snk" />
115    <None Include="Properties\AssemblyInfo.frame" />
116    <None Include="Properties\Settings.settings">
117      <Generator>PublicSettingsSingleFileGenerator</Generator>
118      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
119    </None>
120    <Compile Include="Properties\Settings.Designer.cs">
121      <AutoGen>True</AutoGen>
122      <DependentUpon>Settings.settings</DependentUpon>
123      <DesignTimeSharedInput>True</DesignTimeSharedInput>
124    </Compile>
125  </ItemGroup>
126  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
127  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
128       Other similar extension points exist, see Microsoft.Common.targets.
129  <Target Name="BeforeBuild">
130  </Target>
131  <Target Name="AfterBuild">
132  </Target>
133  -->
134  <PropertyGroup>
135    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
136set ProjectDir=$(ProjectDir)
137set SolutionDir=$(SolutionDir)
138set Outdir=$(Outdir)
139
140call PreBuildEvent.cmd</PreBuildEvent>
141  </PropertyGroup>
142</Project>
Note: See TracBrowser for help on using the repository browser.