System.Reactive.Providers.csproj 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <!-- Not used (yet).
  4. <UsingTask TaskName="BuildTasks.HomoIcon" AssemblyFile="$(ProjectDir)\..\..\Tools\BuildTasks.dll" />
  5. -->
  6. <PropertyGroup>
  7. <ProductVersion>8.0.30703</ProductVersion>
  8. <SchemaVersion>2.0</SchemaVersion>
  9. <ProjectGuid>{C7B9D7BE-F47F-466B-A6B0-E46F1069B171}</ProjectGuid>
  10. <OutputType>Library</OutputType>
  11. <AppDesignerFolder>Properties</AppDesignerFolder>
  12. <RootNamespace>System.Reactive</RootNamespace>
  13. <AssemblyName>System.Reactive.Providers</AssemblyName>
  14. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  15. <FileAlignment>512</FileAlignment>
  16. <ProductSignAssembly>true</ProductSignAssembly>
  17. <CodeAnalysisRuleSet>..\Rx.ruleset</CodeAnalysisRuleSet>
  18. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
  19. </PropertyGroup>
  20. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseXBLV|AnyCPU'">
  21. <OutputPath>bin\ReleaseXBLV\</OutputPath>
  22. </PropertyGroup>
  23. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugXBLV|AnyCPU'">
  24. <OutputPath>bin\DebugXBLV\</OutputPath>
  25. </PropertyGroup>
  26. <Import Project="..\Common.targets" />
  27. <PropertyGroup>
  28. <DocumentationFile>$(OutputPath)\$(AssemblyName).XML</DocumentationFile>
  29. </PropertyGroup>
  30. <ItemGroup>
  31. <Reference Include="mscorlib" Condition=" '$(BuildPlatform)' == 'SILVERLIGHT' " />
  32. <Reference Include="System" />
  33. <Reference Include="System.Core" />
  34. <Reference Include="System.Observable" Condition=" '$(BuildFlavor)' == 'SILVERLIGHTM7' " />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <Compile Include="GlobalSuppressions.cs" />
  38. <Compile Include="Properties\AssemblyInfo.cs" />
  39. <Compile Include="Reactive\Internal\Constants.cs" />
  40. <Compile Include="Reactive\Joins\QueryablePattern.cs" />
  41. <Compile Include="Reactive\Joins\QueryablePlan.cs" />
  42. <Compile Include="Reactive\Linq\ExpressionVisitor.cs" />
  43. <Compile Include="Reactive\Linq\Observable.Queryable.cs" />
  44. <Compile Include="Reactive\Linq\Qbservable.cs" />
  45. <Compile Include="Reactive\Linq\Qbservable.Generated.cs" />
  46. <Compile Include="Reactive\Linq\Qbservable.Joins.cs" />
  47. <Compile Include="Reactive\ObservableQuery.cs" />
  48. <Compile Include="Strings_Providers.Generated.cs" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <ProjectReference Include="..\System.Reactive.Core\System.Reactive.Core.csproj">
  52. <Project>{4E516F10-DA7A-4D43-963E-A93865ABEA5B}</Project>
  53. <Name>System.Reactive.Core</Name>
  54. </ProjectReference>
  55. <ProjectReference Include="..\System.Reactive.Interfaces\System.Reactive.Interfaces.csproj">
  56. <Project>{9E9B9C60-98B0-40FA-9C2B-1218D417CAA4}</Project>
  57. <Name>System.Reactive.Interfaces</Name>
  58. </ProjectReference>
  59. <ProjectReference Include="..\System.Reactive.Linq\System.Reactive.Linq.csproj">
  60. <Project>{63252AE9-5186-45CA-BFCD-FA51C6B66A43}</Project>
  61. <Name>System.Reactive.Linq</Name>
  62. </ProjectReference>
  63. </ItemGroup>
  64. <ItemGroup>
  65. <EmbeddedResource Include="Strings_Providers.resx" />
  66. </ItemGroup>
  67. <Import Project="..\Import.targets" />
  68. <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
  69. <!-- HomoIconizer build task configuration (disabled for now)
  70. <PropertyGroup>
  71. <HomoIconIntermediateOutputPath>obj\$(Configuration)\HomoIcon</HomoIconIntermediateOutputPath>
  72. </PropertyGroup>
  73. <Target Name="BeforeCompile">
  74. <HomoIcon InputBinary="@(_ResolvedProjectReferencePaths)" IntermediateOutputPath="$(HomoIconIntermediateOutputPath)">
  75. <Output TaskParameter="OutputFile" ItemName="Compile" />
  76. </HomoIcon>
  77. </Target>
  78. -->
  79. </Project>