Free cookie consent management tool by TermsFeed Policy Generator

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

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

Created AutoStorable attribute and static reflection helper to determine serializible components. (#506)

File size: 2.4 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.SerializationTest</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="AutoStorableAttributeTests.cs" />
52    <Compile Include="AutoStorableAttribute.cs" />
53    <Compile Include="PersistenceManager.cs" />
54    <Compile Include="SerializationTest.cs" />
55  </ItemGroup>
56</Project>
Note: See TracBrowser for help on using the repository browser.