root/branches/2.0.3000/src/core/OpenRasta.Tests.Integration/OpenRasta.Tests.Integration.csproj @ 425

Revision 425, 5.0 KB (checked in by serialseb, 7 months ago)

numerous fixes to binders and new surrogate type system

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>{C938666D-4CA8-4EF0-9EF5-03A508312037}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>OpenRasta.Tests.Integration</RootNamespace>
12    <AssemblyName>OpenRasta.Tests.Integration</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <NoWarn>1591</NoWarn>
15    <FileAlignment>512</FileAlignment>
16  </PropertyGroup>
17  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18    <DebugSymbols>true</DebugSymbols>
19    <DebugType>full</DebugType>
20    <Optimize>false</Optimize>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <DefineConstants>TRACE</DefineConstants>
29    <ErrorReport>prompt</ErrorReport>
30    <WarningLevel>4</WarningLevel>
31  </PropertyGroup>
32  <ItemGroup>
33    <Reference Include="Moq, Version=2.6.3127.18174, Culture=neutral, PublicKeyToken=69f491c39445e920, processorArchitecture=MSIL">
34      <SpecificVersion>False</SpecificVersion>
35      <HintPath>..\..\..\lib\moq-2.5\Moq.dll</HintPath>
36    </Reference>
37    <Reference Include="nunit.framework, Version=2.5.0.9122, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
38      <SpecificVersion>False</SpecificVersion>
39      <HintPath>..\..\..\lib\nunit-2.5\nunit.framework.dll</HintPath>
40    </Reference>
41    <Reference Include="System" />
42    <Reference Include="System.Core">
43      <RequiredTargetFramework>3.5</RequiredTargetFramework>
44    </Reference>
45    <Reference Include="System.Runtime.Serialization">
46      <RequiredTargetFramework>3.0</RequiredTargetFramework>
47    </Reference>
48    <Reference Include="System.ServiceModel.Web">
49      <RequiredTargetFramework>3.5</RequiredTargetFramework>
50    </Reference>
51    <Reference Include="System.Web" />
52    <Reference Include="System.Xml.Linq">
53      <RequiredTargetFramework>3.5</RequiredTargetFramework>
54    </Reference>
55    <Reference Include="System.Data.DataSetExtensions">
56      <RequiredTargetFramework>3.5</RequiredTargetFramework>
57    </Reference>
58    <Reference Include="System.Data" />
59    <Reference Include="System.Xml" />
60  </ItemGroup>
61  <ItemGroup>
62    <Compile Include="..\..\CommonInfo.cs">
63      <Link>Properties\CommonInfo.cs</Link>
64    </Compile>
65    <Compile Include="Binding\CustomSurrogates.cs" />
66    <Compile Include="Regressions\92.cs" />
67    <Compile Include="Codecs\HtmlForm_Specification.cs" />
68    <Compile Include="Codecs\Json_Specification.cs" />
69    <Compile Include="Codecs\MultipartFormData_Specification.cs" />
70    <Compile Include="Codecs\TextPlain_Specification.cs" />
71    <Compile Include="MultipleThreads_Specification.cs" />
72    <Compile Include="Properties\AssemblyInfo.cs" />
73    <Compile Include="Regressions\78.cs" />
74    <Compile Include="Regressions\96.cs" />
75    <Compile Include="Security\DigestAuthentication_Specification.cs" />
76    <Compile Include="server_context.cs" />
77    <Compile Include="Stubs\Customer.cs" />
78    <Compile Include="Stubs\CustomerHandler.cs" />
79    <Compile Include="UriDecorators\ContentTypeExtensions_Specification.cs" />
80  </ItemGroup>
81  <ItemGroup>
82    <ProjectReference Include="..\OpenRasta.Net35\OpenRasta.Net35.csproj">
83      <Project>{B277A767-9008-4A29-B27F-57DB4BF4F4FB}</Project>
84      <Name>OpenRasta.Net35</Name>
85    </ProjectReference>
86    <ProjectReference Include="..\OpenRasta\OpenRasta.csproj">
87      <Project>{C3ED9CCE-A140-4D0F-AE00-FBBF4CD27647}</Project>
88      <Name>OpenRasta</Name>
89    </ProjectReference>
90  </ItemGroup>
91  <ItemGroup>
92    <ProjectReference Include="..\OpenRasta.Net30\OpenRasta.Net30.csproj">
93      <Project>{F349FB0E-3E62-489A-978A-0BDFA857B70E}</Project>
94      <Name>OpenRasta.Net30</Name>
95    </ProjectReference>
96    <ProjectReference Include="..\OpenRasta.Testing\OpenRasta.Testing.csproj">
97      <Project>{174DEE64-B4B2-4F30-ADA2-15D67ADE3320}</Project>
98      <Name>OpenRasta.Testing</Name>
99    </ProjectReference>
100  </ItemGroup>
101  <Import Project="..\..\..\build\defaults.targets" />
102  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
103  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
104       Other similar extension points exist, see Microsoft.Common.targets.
105  <Target Name="BeforeBuild">
106  </Target>
107  <Target Name="AfterBuild">
108  </Target>
109  -->
110</Project>
Note: See TracBrowser for help on using the browser.