Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Logging/3.2/HeuristicLab.Logging-3.2.csproj @ 3042

Last change on this file since 3042 was 2474, checked in by swagner, 15 years ago

Implemented generic EventArgs (#796)

File size: 7.7 KB
RevLine 
[2]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>
[574]5    <ProductVersion>9.0.30729</ProductVersion>
[2]6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{4095C92C-5A4C-44BC-9963-5F384CF5CC3F}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Logging</RootNamespace>
[582]11    <AssemblyName>HeuristicLab.Logging-3.2</AssemblyName>
[2]12    <SignAssembly>true</SignAssembly>
13    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
14    <FileUpgradeFlags>
15    </FileUpgradeFlags>
16    <OldToolsVersion>2.0</OldToolsVersion>
17    <UpgradeBackupLocation>
18    </UpgradeBackupLocation>
[2474]19    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
[2]20  </PropertyGroup>
21  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
22    <DebugSymbols>true</DebugSymbols>
23    <DebugType>full</DebugType>
24    <Optimize>false</Optimize>
25    <OutputPath>bin\Debug\</OutputPath>
26    <DefineConstants>DEBUG;TRACE</DefineConstants>
27    <ErrorReport>prompt</ErrorReport>
28    <WarningLevel>4</WarningLevel>
29  </PropertyGroup>
30  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31    <DebugType>pdbonly</DebugType>
32    <Optimize>true</Optimize>
33    <OutputPath>bin\Release\</OutputPath>
34    <DefineConstants>TRACE</DefineConstants>
35    <ErrorReport>prompt</ErrorReport>
36    <WarningLevel>4</WarningLevel>
37    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
[582]38    <DocumentationFile>bin\Release\HeuristicLab.Logging-3.2.XML</DocumentationFile>
[2]39  </PropertyGroup>
[564]40  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
41    <DebugSymbols>true</DebugSymbols>
42    <OutputPath>bin\x86\Debug\</OutputPath>
43    <DefineConstants>DEBUG;TRACE</DefineConstants>
44    <DebugType>full</DebugType>
45    <PlatformTarget>x86</PlatformTarget>
46    <ErrorReport>prompt</ErrorReport>
47  </PropertyGroup>
48  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
49    <OutputPath>bin\x86\Release\</OutputPath>
50    <DefineConstants>TRACE</DefineConstants>
[582]51    <DocumentationFile>bin\Release\HeuristicLab.Logging-3.2.XML</DocumentationFile>
[564]52    <Optimize>true</Optimize>
53    <DebugType>pdbonly</DebugType>
54    <PlatformTarget>x86</PlatformTarget>
55    <ErrorReport>prompt</ErrorReport>
56  </PropertyGroup>
[1474]57  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
58    <DebugSymbols>true</DebugSymbols>
59    <OutputPath>bin\x64\Debug\</OutputPath>
60    <DefineConstants>DEBUG;TRACE</DefineConstants>
61    <DebugType>full</DebugType>
62    <PlatformTarget>x64</PlatformTarget>
63    <ErrorReport>prompt</ErrorReport>
64  </PropertyGroup>
65  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
66    <OutputPath>bin\x64\Release\</OutputPath>
67    <DefineConstants>TRACE</DefineConstants>
68    <DocumentationFile>bin\Release\HeuristicLab.Logging-3.2.XML</DocumentationFile>
69    <Optimize>true</Optimize>
70    <DebugType>pdbonly</DebugType>
71    <PlatformTarget>x64</PlatformTarget>
72    <ErrorReport>prompt</ErrorReport>
73  </PropertyGroup>
[2]74  <ItemGroup>
75    <Reference Include="System" />
[2474]76    <Reference Include="System.Core">
77      <RequiredTargetFramework>3.5</RequiredTargetFramework>
78    </Reference>
[2]79    <Reference Include="System.Data" />
80    <Reference Include="System.Drawing" />
81    <Reference Include="System.Windows.Forms" />
82    <Reference Include="System.Xml" />
83  </ItemGroup>
84  <ItemGroup>
85    <Compile Include="BestAverageWorstQualityCalculator.cs" />
[671]86    <Compile Include="PointXYChartView.cs">
87      <SubType>UserControl</SubType>
88    </Compile>
89    <Compile Include="PointXYChartView.Designer.cs">
90      <DependentUpon>PointXYChartView.cs</DependentUpon>
91    </Compile>
[283]92    <Compile Include="Logger.cs" />
[2]93    <Compile Include="Linechart.cs" />
94    <Compile Include="HeuristicLabLoggingPlugin.cs" />
95    <Compile Include="LinechartView.cs">
96      <SubType>UserControl</SubType>
97    </Compile>
98    <Compile Include="LinechartView.Designer.cs">
99      <DependentUpon>LinechartView.cs</DependentUpon>
100    </Compile>
101    <Compile Include="LogView.cs">
102      <SubType>UserControl</SubType>
103    </Compile>
104    <Compile Include="LogView.Designer.cs">
105      <DependentUpon>LogView.cs</DependentUpon>
106    </Compile>
[671]107    <Compile Include="PointXYChart.cs" />
108    <Compile Include="PointXYChartInjector.cs" />
[2]109    <Compile Include="Properties\AssemblyInfo.cs" />
110    <Compile Include="QualityLogger.cs" />
111    <Compile Include="Log.cs" />
112    <Compile Include="LinechartInjector.cs" />
[1782]113    <Compile Include="SimpleBestSolutionStorer.cs" />
[2]114  </ItemGroup>
115  <ItemGroup>
116    <None Include="HeuristicLab.snk" />
[30]117    <None Include="Properties\AssemblyInfo.frame" />
[2]118  </ItemGroup>
119  <ItemGroup>
[1534]120    <ProjectReference Include="..\..\HeuristicLab.Charting.Data\3.2\HeuristicLab.Charting.Data-3.2.csproj">
[2]121      <Project>{E0740131-AA3E-4A3F-BA03-C9FF8327F4EE}</Project>
[1534]122      <Name>HeuristicLab.Charting.Data-3.2</Name>
[2]123    </ProjectReference>
[1534]124    <ProjectReference Include="..\..\HeuristicLab.Charting\3.2\HeuristicLab.Charting-3.2.csproj">
[2]125      <Project>{B462D3CC-8866-42F0-9832-AD0967613B72}</Project>
[1534]126      <Name>HeuristicLab.Charting-3.2</Name>
[2]127    </ProjectReference>
[2474]128    <ProjectReference Include="..\..\HeuristicLab.Common\3.2\HeuristicLab.Common-3.2.csproj">
129      <Project>{1FC004FC-59AF-4249-B1B6-FF25873A20E4}</Project>
130      <Name>HeuristicLab.Common-3.2</Name>
131    </ProjectReference>
[1534]132    <ProjectReference Include="..\..\HeuristicLab.Core\3.2\HeuristicLab.Core-3.2.csproj">
[2]133      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
[1534]134      <Name>HeuristicLab.Core-3.2</Name>
[2]135    </ProjectReference>
[1534]136    <ProjectReference Include="..\..\HeuristicLab.Data\3.2\HeuristicLab.Data-3.2.csproj">
[2]137      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
[1534]138      <Name>HeuristicLab.Data-3.2</Name>
[2]139    </ProjectReference>
[1534]140    <ProjectReference Include="..\..\HeuristicLab.Operators\3.2\HeuristicLab.Operators-3.2.csproj">
[2]141      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
[1534]142      <Name>HeuristicLab.Operators-3.2</Name>
[2]143    </ProjectReference>
[1534]144    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
[2]145      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
146      <Name>HeuristicLab.PluginInfrastructure</Name>
147    </ProjectReference>
148  </ItemGroup>
149  <ItemGroup>
[671]150    <EmbeddedResource Include="PointXYChartView.resx">
151      <DependentUpon>PointXYChartView.cs</DependentUpon>
152      <SubType>Designer</SubType>
153    </EmbeddedResource>
[2]154    <EmbeddedResource Include="LinechartView.resx">
155      <DependentUpon>LinechartView.cs</DependentUpon>
156      <SubType>Designer</SubType>
157    </EmbeddedResource>
158    <EmbeddedResource Include="LogView.resx">
159      <DependentUpon>LogView.cs</DependentUpon>
160      <SubType>Designer</SubType>
161    </EmbeddedResource>
162  </ItemGroup>
163  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
164  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
165       Other similar extension points exist, see Microsoft.Common.targets.
166  <Target Name="BeforeBuild">
167  </Target>
168  <Target Name="AfterBuild">
169  </Target>
170  -->
[30]171  <PropertyGroup>
[852]172    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
173set ProjectDir=$(ProjectDir)
174set SolutionDir=$(SolutionDir)
175set Outdir=$(Outdir)
176
177call PreBuildEvent.cmd</PreBuildEvent>
[30]178  </PropertyGroup>
[2]179</Project>
Note: See TracBrowser for help on using the repository browser.