Free cookie consent management tool by TermsFeed Policy Generator

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

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

Rename primitive serializers to formatters and compound/composite serializers to decomposers. (#506)

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