Microsoft.Reactive.Testing.csproj 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" 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>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{E7B7408B-B039-4F30-B6CF-CC06218CE4CA}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Microsoft.Reactive.Testing</RootNamespace>
  12. <AssemblyName>Microsoft.Reactive.Testing</AssemblyName>
  13. <FileAlignment>512</FileAlignment>
  14. <ProductSignAssembly>true</ProductSignAssembly>
  15. <CodeAnalysisRuleSet>..\Rx.ruleset</CodeAnalysisRuleSet>
  16. </PropertyGroup>
  17. <Import Project="..\Common.targets" />
  18. <PropertyGroup>
  19. <DocumentationFile>$(OutputPath)\$(AssemblyName).XML</DocumentationFile>
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <Reference Include="mscorlib" Condition=" '$(BuildPlatform)' == 'SILVERLIGHT' " />
  23. <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight" Condition=" '$(BuildPlatform)' == 'SILVERLIGHT' " />
  24. <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" Condition=" '$(BuildPlatform)' == 'DESKTOPCLR' Or '$(BuildPlatform)' == 'WINDOWS_PHONE' " />
  25. <Reference Include="System" />
  26. <Reference Include="System.Core" />
  27. <Reference Include="System.Observable" Condition=" '$(BuildFlavor)' == 'SILVERLIGHTM7' " />
  28. </ItemGroup>
  29. <ItemGroup Condition=" '$(BuildFlavor)' == 'WINDOWS8' Or '$(BuildFlavor)' == 'WINDOWS81' ">
  30. <SDKReference Include="MSTestFramework, Version=11.0" />
  31. <SDKReference Include="TestPlatform, Version=11.0" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <Compile Include="ColdObservable.cs" />
  35. <Compile Include="GlobalSuppressions.cs" />
  36. <Compile Include="HotObservable.cs" />
  37. <Compile Include="ITestObservable.cs" />
  38. <Compile Include="ITestObserver.cs" />
  39. <Compile Include="MockObserver.cs" />
  40. <Compile Include="NamespaceDoc.cs" />
  41. <Compile Include="Properties\AssemblyInfo.cs" />
  42. <Compile Include="ReactiveAssert.cs" />
  43. <Compile Include="ReactiveTest.cs" />
  44. <Compile Include="Recorded.cs" />
  45. <Compile Include="Subscription.cs" />
  46. <Compile Include="TestScheduler.cs" />
  47. </ItemGroup>
  48. <ItemGroup>
  49. <ProjectReference Include="..\System.Reactive.Core\System.Reactive.Core.csproj">
  50. <Project>{4E516F10-DA7A-4D43-963E-A93865ABEA5B}</Project>
  51. <Name>System.Reactive.Core</Name>
  52. </ProjectReference>
  53. <ProjectReference Include="..\System.Reactive.Interfaces\System.Reactive.Interfaces.csproj">
  54. <Project>{9E9B9C60-98B0-40FA-9C2B-1218D417CAA4}</Project>
  55. <Name>System.Reactive.Interfaces</Name>
  56. </ProjectReference>
  57. <ProjectReference Include="..\System.Reactive.Linq\System.Reactive.Linq.csproj">
  58. <Project>{63252AE9-5186-45CA-BFCD-FA51C6B66A43}</Project>
  59. <Name>System.Reactive.Linq</Name>
  60. </ProjectReference>
  61. </ItemGroup>
  62. <Import Project="..\Import.targets" />
  63. </Project>