Tests.csproj 5.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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>
  7. </ProductVersion>
  8. <SchemaVersion>2.0</SchemaVersion>
  9. <ProjectGuid>{C4C8532A-F8D2-428B-962E-FD578A1E647C}</ProjectGuid>
  10. <OutputType>Library</OutputType>
  11. <AppDesignerFolder>Properties</AppDesignerFolder>
  12. <RootNamespace>Tests</RootNamespace>
  13. <AssemblyName>Tests</AssemblyName>
  14. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  15. <FileAlignment>512</FileAlignment>
  16. <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  17. </PropertyGroup>
  18. <Import Project="..\Common.targets" />
  19. <PropertyGroup Condition="'$(BuildPlatform)' == 'SILVERLIGHT' AND !('$(BuildFlavor)' == 'SILVERLIGHTM7')">
  20. <SilverlightApplication>true</SilverlightApplication>
  21. <XapOutputs>true</XapOutputs>
  22. <XapFilename>$(AssemblyName).xap</XapFilename>
  23. <GenerateSilverlightManifest>true</GenerateSilverlightManifest>
  24. <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate>
  25. <SilverlightAppEntry>InteractiveTests.App</SilverlightAppEntry>
  26. <TestPageFileName>TestPage.html</TestPageFileName>
  27. <CreateTestPage>true</CreateTestPage>
  28. </PropertyGroup>
  29. <!-- Temporary workaround to disable tests as part of automated builds (defeating the **\Tests*.dll the search pattern). -->
  30. <PropertyGroup Condition="'$(BuildPlatform)' != 'DESKTOPCLR'">
  31. <AssemblyName>_$(AssemblyName)</AssemblyName>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <!-- See readme.txt file in the References\$(BuildFlavor) folder for information on the test assemblies used here. -->
  35. <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework">
  36. <HintPath>..\..\..\..\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PublicAssemblies\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll</HintPath>
  37. </Reference>
  38. <Reference Include="mscorlib" Condition=" '$(BuildPlatform)' == 'SILVERLIGHT' Or '$(BuildPlatform)' == 'XNA' " />
  39. <Reference Include="System" />
  40. <Reference Include="System.Core" />
  41. <Reference Include="System.Observable" Condition=" '$(BuildFlavor)' == 'SILVERLIGHTM7' " />
  42. <Reference Include="System.Windows" Condition=" '$(BuildPlatform)' == 'SILVERLIGHT' " />
  43. <Reference Include="System.Windows.Browser" Condition=" '$(BuildPlatform)' == 'SILVERLIGHT' AND !('$(BuildFlavor)' == 'SILVERLIGHTM7')" />
  44. <Reference Include="Microsoft.Silverlight.Testing" Condition=" '$(BuildPlatform)' == 'SILVERLIGHT' AND !('$(BuildFlavor)' == 'SILVERLIGHTM7')">
  45. <Private>true</Private>
  46. </Reference>
  47. <Reference Include="System.Windows.Forms" Condition=" '$(BuildPlatform)' == 'DESKTOPCLR' " />
  48. <Reference Include="WindowsBase" Condition=" '$(BuildPlatform)' == 'DESKTOPCLR' " />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies">
  52. <Visible>False</Visible>
  53. </CodeAnalysisDependentAssemblyPaths>
  54. </ItemGroup>
  55. <ItemGroup>
  56. <Compile Include="App.cs" />
  57. <Compile Include="AsyncTests.Creation.cs" />
  58. <Compile Include="AsyncTests.cs" />
  59. <Compile Include="AsyncTests.Conversions.cs" />
  60. <Compile Include="AsyncTests.Single.cs" />
  61. <Compile Include="AsyncTests.Multiple.cs" />
  62. <Compile Include="AsyncTests.Aggregates.cs" />
  63. <Compile Include="AsyncTests.Bugs.cs" />
  64. <Compile Include="AsyncTests.Exceptions.cs" />
  65. <Compile Include="Tests.Imperative.cs" />
  66. <Compile Include="Tests.Qbservable.cs" />
  67. <Compile Include="Tests.Single.cs" />
  68. <Compile Include="Tests.Multiple.cs" />
  69. <Compile Include="Tests.Exceptions.cs" />
  70. <Compile Include="Tests.Creation.cs" />
  71. <Compile Include="Tests.Buffering.cs" />
  72. <Compile Include="Tests.cs" />
  73. <Compile Include="Properties\AssemblyInfo.cs" />
  74. <Compile Include="Tests.Aggregates.cs" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <ProjectReference Include="..\System.Interactive.Async\System.Interactive.Async.csproj" Condition=" '$(BuildFlavor)' == 'DESKTOPCLR40' ">
  78. <Project>{7269A578-326A-4C3E-9874-A2D2600095BC}</Project>
  79. <Name>System.Interactive.Async</Name>
  80. </ProjectReference>
  81. <ProjectReference Include="..\System.Interactive.Providers\System.Interactive.Providers.csproj" Condition=" '$(BuildFlavor)' != 'SILVERLIGHTM7' And '$(BuildPlatform)' != 'XNA' ">
  82. <Project>{6D62E966-469D-4A99-BD43-0A17FA14FB4F}</Project>
  83. <Name>System.Interactive.Providers</Name>
  84. </ProjectReference>
  85. <ProjectReference Include="..\System.Interactive\System.Interactive.csproj">
  86. <Project>{8E4B04F0-915E-48F9-9796-76278C6094BD}</Project>
  87. <Name>System.Interactive</Name>
  88. </ProjectReference>
  89. </ItemGroup>
  90. <Import Project="..\Import.targets" />
  91. </Project>