Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence/Test/HeuristicLab.Persistence.Test.csproj @ 1569

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

Update persistence tests. (#548)

File size: 4.5 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>{E2245078-6F40-449E-A370-01A97A7C5E6A}</ProjectGuid>
9    <OutputType>Exe</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Persistence.Test</RootNamespace>
12    <AssemblyName>HeuristicLab.Persistence.Test</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <StartupObject>HeuristicLab.Persistence.Test.NewSerializationTest</StartupObject>
16  </PropertyGroup>
17  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18    <DebugSymbols>true</DebugSymbols>
19    <DebugType>full</DebugType>
20    <Optimize>false</Optimize>
21    <OutputPath>bin\Debug\</OutputPath>
22    <DefineConstants>TRACE;DEBUG</DefineConstants>
23    <ErrorReport>prompt</ErrorReport>
24    <WarningLevel>4</WarningLevel>
25  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>bin\Release\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
35    <DebugSymbols>true</DebugSymbols>
36    <OutputPath>bin\x64\Debug\</OutputPath>
37    <DefineConstants>TRACE;DEBUG</DefineConstants>
38    <DebugType>full</DebugType>
39    <PlatformTarget>x64</PlatformTarget>
40    <ErrorReport>prompt</ErrorReport>
41  </PropertyGroup>
42  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
43    <OutputPath>bin\x64\Release\</OutputPath>
44    <DefineConstants>TRACE</DefineConstants>
45    <Optimize>true</Optimize>
46    <DebugType>pdbonly</DebugType>
47    <PlatformTarget>x64</PlatformTarget>
48    <ErrorReport>prompt</ErrorReport>
49  </PropertyGroup>
50  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
51    <DebugSymbols>true</DebugSymbols>
52    <OutputPath>bin\x86\Debug\</OutputPath>
53    <DefineConstants>TRACE;DEBUG</DefineConstants>
54    <DebugType>full</DebugType>
55    <PlatformTarget>x86</PlatformTarget>
56    <ErrorReport>prompt</ErrorReport>
57  </PropertyGroup>
58  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
59    <OutputPath>bin\x86\Release\</OutputPath>
60    <DefineConstants>TRACE</DefineConstants>
61    <Optimize>true</Optimize>
62    <DebugType>pdbonly</DebugType>
63    <PlatformTarget>x86</PlatformTarget>
64    <ErrorReport>prompt</ErrorReport>
65  </PropertyGroup>
66  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
67  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
68       Other similar extension points exist, see Microsoft.Common.targets.
69  <Target Name="BeforeBuild">
70  </Target>
71  <Target Name="AfterBuild">
72  </Target>
73  -->
74  <ItemGroup>
75    <Compile Include="NewSerializationTest.cs" />
76    <Compile Include="SerializationTest.cs" />
77    <Compile Include="StorableAttributeTests.cs" />
78  </ItemGroup>
79  <ItemGroup>
80    <Reference Include="log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821, processorArchitecture=MSIL">
81      <SpecificVersion>False</SpecificVersion>
82      <HintPath>..\..\HeuristicLab.Tracing\3.2\libs\debug\log4net.dll</HintPath>
83    </Reference>
84    <Reference Include="System" />
85    <Reference Include="System.Core">
86      <RequiredTargetFramework>3.5</RequiredTargetFramework>
87    </Reference>
88    <Reference Include="System.XML" />
89  </ItemGroup>
90  <ItemGroup>
91    <ProjectReference Include="..\3.3\HeuristicLab.Persistence-3.3.csproj">
92      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
93      <Name>HeuristicLab.Persistence-3.3</Name>
94    </ProjectReference>
95    <ProjectReference Include="..\..\HeuristicLab.Tracing\3.2\HeuristicLab.Tracing-3.2.csproj">
96      <Project>{EE2034D9-6E27-48A1-B855-42D45F69A4FC}</Project>
97      <Name>HeuristicLab.Tracing-3.2</Name>
98    </ProjectReference>
99  </ItemGroup>
100  <ItemGroup>
101    <Folder Include="Properties\" />
102  </ItemGroup>
103</Project>
Note: See TracBrowser for help on using the repository browser.