Free cookie consent management tool by TermsFeed Policy Generator

source: branches/New Persistence Exploration/Persistence/Persistence/Persistence.csproj @ 1313

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

Proper deserialization of parent references. (#506)

File size: 2.8 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>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</ProjectGuid>
9    <OutputType>Exe</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>Persistence</RootNamespace>
12    <AssemblyName>Persistence</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <StartupObject>Persistence.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>DEBUG;TRACE</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  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
35  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
36       Other similar extension points exist, see Microsoft.Common.targets.
37  <Target Name="BeforeBuild">
38  </Target>
39  <Target Name="AfterBuild">
40  </Target>
41  -->
42  <ItemGroup>
43    <Reference Include="System" />
44    <Reference Include="System.Data" />
45    <Reference Include="System.Data.Linq">
46      <RequiredTargetFramework>3.5</RequiredTargetFramework>
47    </Reference>
48    <Reference Include="System.Xml" />
49  </ItemGroup>
50  <ItemGroup>
51    <Compile Include="DeSerializer.cs" />
52    <Compile Include="Serializer.cs" />
53    <Compile Include="CompoundSerializers.cs" />
54    <Compile Include="PrimitiveSerializers.cs" />
55    <Compile Include="Tokens.cs" />
56    <Compile Include="Util.cs" />
57    <Compile Include="StorableAttributeTests.cs" />
58    <Compile Include="StorableAttribute.cs" />
59    <Compile Include="NewSerializationTest.cs" />
60    <Compile Include="SerializationTest.cs" />
61    <Compile Include="XmlFormatter.cs" />
62    <Compile Include="XmlParser.cs" />
63  </ItemGroup>
64  <ItemGroup>
65    <Folder Include="Interfaces\" />
66  </ItemGroup>
67</Project>
Note: See TracBrowser for help on using the repository browser.