Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 8 was 8, checked in by gkronber, 16 years ago

removed silly assertion statements (ticket #12)

File size: 4.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.21022</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  <ItemGroup>
42    <Reference Include="System" />
43    <Reference Include="System.Data" />
44    <Reference Include="System.Deployment" />
45    <Reference Include="System.Drawing" />
46    <Reference Include="System.Windows.Forms" />
47    <Reference Include="System.Xml" />
48  </ItemGroup>
49  <ItemGroup>
50    <Compile Include="ApplicationInfo.cs" />
51    <Compile Include="BaseClasses\ApplicationBase.cs" />
52    <Compile Include="BaseClasses\PluginBase.cs" />
53    <Compile Include="ClassInfoAttribute.cs" />
54    <Compile Include="Interfaces\IApplication.cs" />
55    <Compile Include="Interfaces\IControl.cs" />
56    <Compile Include="Interfaces\IControlManager.cs" />
57    <Compile Include="InvalidPluginException.cs" />
58    <Compile Include="PluginManager.cs" />
59    <Compile Include="PluginManagerActionEventArgs.cs" />
60    <Compile Include="DependencyAttribute.cs" />
61    <Compile Include="Interfaces\IPlugin.cs" />
62    <Compile Include="DiscoveryService.cs" />
63    <Compile Include="PluginFileAttribute.cs" />
64    <Compile Include="PluginInfo.cs" />
65    <Compile Include="Loader.cs" />
66    <Compile Include="Runner.cs" />
67    <Compile Include="Properties\AssemblyInfo.cs" />
68    <EmbeddedResource Include="Properties\Resources.resx">
69      <Generator>ResXFileCodeGenerator</Generator>
70      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
71      <SubType>Designer</SubType>
72    </EmbeddedResource>
73    <Compile Include="Properties\Resources.Designer.cs">
74      <AutoGen>True</AutoGen>
75      <DependentUpon>Resources.resx</DependentUpon>
76      <DesignTime>True</DesignTime>
77    </Compile>
78    <None Include="app.config" />
79    <None Include="HeuristicLab.snk" />
80    <None Include="Properties\Settings.settings">
81      <Generator>SettingsSingleFileGenerator</Generator>
82      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
83    </None>
84    <Compile Include="Properties\Settings.Designer.cs">
85      <AutoGen>True</AutoGen>
86      <DependentUpon>Settings.settings</DependentUpon>
87      <DesignTimeSharedInput>True</DesignTimeSharedInput>
88    </Compile>
89  </ItemGroup>
90  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
91  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
92       Other similar extension points exist, see Microsoft.Common.targets.
93  <Target Name="BeforeBuild">
94  </Target>
95  <Target Name="AfterBuild">
96  </Target>
97  -->
98</Project>
Note: See TracBrowser for help on using the repository browser.