Free cookie consent management tool by TermsFeed Policy Generator

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

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

fixed a problem in the pre/post build scripts with spaces in paths

File size: 5.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  </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="ClassInfoAttribute.cs" />
72    <Compile Include="Interfaces\IApplication.cs" />
73    <Compile Include="Interfaces\IControl.cs" />
74    <Compile Include="Interfaces\IControlManager.cs" />
75    <Compile Include="InvalidPluginException.cs" />
76    <Compile Include="PluginManager.cs" />
77    <Compile Include="PluginManagerActionEventArgs.cs" />
78    <Compile Include="DependencyAttribute.cs" />
79    <Compile Include="Interfaces\IPlugin.cs" />
80    <Compile Include="DiscoveryService.cs" />
81    <Compile Include="PluginFileAttribute.cs" />
82    <Compile Include="PluginInfo.cs" />
83    <Compile Include="Loader.cs" />
84    <Compile Include="Runner.cs" />
85    <Compile Include="Properties\AssemblyInfo.cs" />
86    <EmbeddedResource Include="Properties\Resources.resx">
87      <Generator>ResXFileCodeGenerator</Generator>
88      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
89      <SubType>Designer</SubType>
90    </EmbeddedResource>
91    <Compile Include="Properties\Resources.Designer.cs">
92      <AutoGen>True</AutoGen>
93      <DependentUpon>Resources.resx</DependentUpon>
94      <DesignTime>True</DesignTime>
95    </Compile>
96    <None Include="app.config" />
97    <None Include="HeuristicLab.snk" />
98    <None Include="Properties\AssemblyInfo.frame" />
99    <None Include="Properties\Settings.settings">
100      <Generator>SettingsSingleFileGenerator</Generator>
101      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
102    </None>
103    <Compile Include="Properties\Settings.Designer.cs">
104      <AutoGen>True</AutoGen>
105      <DependentUpon>Settings.settings</DependentUpon>
106      <DesignTimeSharedInput>True</DesignTimeSharedInput>
107    </Compile>
108  </ItemGroup>
109  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
110  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
111       Other similar extension points exist, see Microsoft.Common.targets.
112  <Target Name="BeforeBuild">
113  </Target>
114  <Target Name="AfterBuild">
115  </Target>
116  -->
117  <PropertyGroup>
118    <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent>
119  </PropertyGroup>
120</Project>
Note: See TracBrowser for help on using the repository browser.