Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Tracing/HeuristicLab.Tracing.csproj @ 1473

Last change on this file since 1473 was 1472, checked in by epitzer, 15 years ago

Include AssemblyInformation.cs in projects. (#9999)

File size: 4.1 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>9.0.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{EE2034D9-6E27-48A1-B855-42D45F69A4FC}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Tracing</RootNamespace>
12    <AssemblyName>HeuristicLab.Tracing-1.0</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
17  </PropertyGroup>
18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>bin\Debug\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <DebugType>pdbonly</DebugType>
29    <Optimize>true</Optimize>
30    <OutputPath>bin\Release\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34  </PropertyGroup>
35  <ItemGroup>
36    <Reference Include="log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821, processorArchitecture=MSIL">
37      <SpecificVersion>False</SpecificVersion>
38      <HintPath>libs\debug\log4net.dll</HintPath>
39    </Reference>
40    <Reference Include="System" />
41    <Reference Include="System.Core">
42      <RequiredTargetFramework>3.5</RequiredTargetFramework>
43    </Reference>
44    <Reference Include="System.Xml.Linq">
45      <RequiredTargetFramework>3.5</RequiredTargetFramework>
46    </Reference>
47    <Reference Include="System.Data.DataSetExtensions">
48      <RequiredTargetFramework>3.5</RequiredTargetFramework>
49    </Reference>
50    <Reference Include="System.Data" />
51    <Reference Include="System.Xml" />
52  </ItemGroup>
53  <ItemGroup>
54    <Compile Include="Logger.cs" />
55    <Compile Include="HeuristicLabTracingPlugin.cs" />
56    <Compile Include="Properties\AssemblyInfo.cs" />
57    <Compile Include="Properties\Settings.Designer.cs">
58      <AutoGen>True</AutoGen>
59      <DesignTimeSharedInput>True</DesignTimeSharedInput>
60      <DependentUpon>Settings.settings</DependentUpon>
61    </Compile>
62  </ItemGroup>
63  <ItemGroup>
64    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
65      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
66      <Name>HeuristicLab.PluginInfrastructure</Name>
67    </ProjectReference>
68  </ItemGroup>
69  <ItemGroup>
70    <None Include="app.config" />
71    <None Include="HeuristicLab.snk" />
72    <None Include="Properties\AssemblyInfo.frame" />
73    <None Include="Properties\Settings.settings">
74      <Generator>SettingsSingleFileGenerator</Generator>
75      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
76    </None>
77    <Content Include="HeuristicLab.log4net.xml">
78      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
79    </Content>
80  </ItemGroup>
81  <ItemGroup>
82    <Content Include="log4net licence.txt" />
83  </ItemGroup>
84  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
85  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
86       Other similar extension points exist, see Microsoft.Common.targets.
87  <Target Name="BeforeBuild">
88  </Target>
89  <Target Name="AfterBuild">
90  </Target>
91  -->
92  <PropertyGroup>
93    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
94set ProjectDir=$(ProjectDir)
95set SolutionDir=$(SolutionDir)
96set Outdir=$(Outdir)
97
98call PreBuildEvent.cmd</PreBuildEvent>
99  </PropertyGroup>
100</Project>
Note: See TracBrowser for help on using the repository browser.