System.Reactive.Core.csproj 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. <ProductVersion>8.0.30703</ProductVersion>
  5. <SchemaVersion>2.0</SchemaVersion>
  6. <ProjectGuid>{4E516F10-DA7A-4D43-963E-A93865ABEA5B}</ProjectGuid>
  7. <OutputType>Library</OutputType>
  8. <AppDesignerFolder>Properties</AppDesignerFolder>
  9. <RootNamespace>System.Reactive</RootNamespace>
  10. <AssemblyName>System.Reactive.Core</AssemblyName>
  11. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <ProductSignAssembly>true</ProductSignAssembly>
  14. <CodeAnalysisRuleSet>..\Rx.ruleset</CodeAnalysisRuleSet>
  15. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
  16. <RestorePackages>true</RestorePackages>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseXBLV|AnyCPU'">
  19. <OutputPath>bin\ReleaseXBLV\</OutputPath>
  20. </PropertyGroup>
  21. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugXBLV|AnyCPU'">
  22. <OutputPath>bin\DebugXBLV\</OutputPath>
  23. </PropertyGroup>
  24. <Import Project="..\Common.targets" />
  25. <PropertyGroup>
  26. <DocumentationFile>$(OutputPath)\$(AssemblyName).XML</DocumentationFile>
  27. </PropertyGroup>
  28. <ItemGroup>
  29. <Reference Include="mscorlib" Condition=" '$(BuildPlatform)' == 'SILVERLIGHT' Or '$(BuildPlatform)' == 'XNA' " />
  30. <Reference Include="System" />
  31. <Reference Include="System.Core" />
  32. <Reference Include="System.Observable" Condition=" '$(BuildFlavor)' == 'SILVERLIGHTM7' " />
  33. <Reference Include="Microsoft.Phone" Condition=" '$(BuildFlavor)' == 'SILVERLIGHTM7' " />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <Compile Include="GlobalSuppressions.cs" />
  37. <Compile Include="InternalsVisibleTo.cs" />
  38. <Compile Include="NamespaceDocs.cs" />
  39. <Compile Include="Observable.Extensions.cs" />
  40. <Compile Include="Observer.Extensions.cs" />
  41. <Compile Include="Properties\AssemblyInfo.cs" />
  42. <Compile Include="Reactive\AnonymousObservable.cs" />
  43. <Compile Include="Reactive\AnonymousObserver.cs" />
  44. <Compile Include="Reactive\AnonymousSafeObserver.cs" />
  45. <Compile Include="Reactive\Concurrency\AsyncLock.cs" />
  46. <Compile Include="Reactive\Concurrency\CatchScheduler.cs" />
  47. <Compile Include="Reactive\Concurrency\ConcurrencyAbstractionLayer.cs" />
  48. <Compile Include="Reactive\Concurrency\ConcurrencyAbstractionLayer.Default.cs" />
  49. <Compile Include="Reactive\Concurrency\Scheduler.Wrappers.cs" />
  50. <Compile Include="Reactive\Concurrency\DisableOptimizationsScheduler.cs" />
  51. <Compile Include="Reactive\Concurrency\Scheduler.Services.Emulation.cs" />
  52. <Compile Include="Reactive\Concurrency\LocalScheduler.TimerQueue.cs" />
  53. <Compile Include="Reactive\Concurrency\Scheduler.Services.cs" />
  54. <Compile Include="Reactive\Concurrency\CurrentThreadScheduler.cs" />
  55. <Compile Include="Reactive\Concurrency\ImmediateScheduler.cs" />
  56. <Compile Include="Reactive\Concurrency\LocalScheduler.cs" />
  57. <Compile Include="Reactive\Concurrency\ScheduledItem.cs" />
  58. <Compile Include="Reactive\Concurrency\Scheduler.Async.cs" />
  59. <Compile Include="Reactive\Concurrency\Scheduler.cs" />
  60. <Compile Include="Reactive\Concurrency\Scheduler.Recursive.cs" />
  61. <Compile Include="Reactive\Concurrency\Scheduler.Simple.cs" />
  62. <Compile Include="Reactive\Concurrency\SchedulerDefaults.cs" />
  63. <Compile Include="Reactive\Concurrency\SchedulerOperation.cs" />
  64. <Compile Include="Reactive\Concurrency\SchedulerQueue.cs" />
  65. <Compile Include="Reactive\Concurrency\SchedulerWrapper.cs" />
  66. <Compile Include="Reactive\Concurrency\Stopwatch.Default.cs" />
  67. <Compile Include="Reactive\Concurrency\Synchronization.cs" />
  68. <Compile Include="Reactive\Concurrency\Synchronization.ObserveOn.cs" />
  69. <Compile Include="Reactive\Concurrency\Synchronization.Synchronize.cs" />
  70. <Compile Include="Reactive\Concurrency\SynchronizationContextScheduler.cs" />
  71. <Compile Include="Reactive\Concurrency\DefaultScheduler.cs" />
  72. <Compile Include="Reactive\Internal\AsyncLockObserver.cs" />
  73. <Compile Include="Reactive\Internal\CheckedObserver.cs" />
  74. <Compile Include="Reactive\Internal\ConcurrentDictionary.cs" />
  75. <Compile Include="Reactive\Internal\ConcurrentQueue.cs" />
  76. <Compile Include="Reactive\Internal\Constants.cs" />
  77. <Compile Include="Reactive\Disposables\AnonymousDisposable.cs" />
  78. <Compile Include="Reactive\Disposables\BooleanDisposable.cs" />
  79. <Compile Include="Reactive\Disposables\CancellationDisposable.cs" />
  80. <Compile Include="Reactive\Disposables\CompositeDisposable.cs" />
  81. <Compile Include="Reactive\Disposables\ContextDisposable.cs" />
  82. <Compile Include="Reactive\Disposables\DefaultDisposable.cs" />
  83. <Compile Include="Reactive\Disposables\Disposable.cs" />
  84. <Compile Include="Reactive\Disposables\MultipleAssignmentDisposable.cs" />
  85. <Compile Include="Reactive\Disposables\RefCountDisposable.cs" />
  86. <Compile Include="Reactive\Disposables\ScheduledDisposable.cs" />
  87. <Compile Include="Reactive\Disposables\SerialDisposable.cs" />
  88. <Compile Include="Reactive\Disposables\SingleAssignmentDisposable.cs" />
  89. <Compile Include="Reactive\Internal\AutoDetachObserver.cs" />
  90. <Compile Include="Reactive\Internal\ExceptionServices.Default.cs" />
  91. <Compile Include="Reactive\Internal\ExceptionServices.cs" />
  92. <Compile Include="Reactive\Internal\HostLifecycleService.cs" />
  93. <Compile Include="Reactive\Internal\ImmutableList.cs" />
  94. <Compile Include="Reactive\Internal\Lazy.cs" />
  95. <Compile Include="Reactive\Internal\Observers.cs" />
  96. <Compile Include="Reactive\Internal\PlatformEnlightenmentProvider.cs" />
  97. <Compile Include="Reactive\Internal\PriorityQueue.cs" />
  98. <Compile Include="Reactive\Internal\Producer.cs" />
  99. <Compile Include="Reactive\Internal\SafeObserver.cs" />
  100. <Compile Include="Reactive\Internal\ScheduledObserver.cs" />
  101. <Compile Include="Reactive\Internal\Semaphore.Silverlight.cs" />
  102. <Compile Include="Reactive\Internal\Semaphore.Xna.cs" />
  103. <Compile Include="Reactive\Internal\Sink.cs" />
  104. <Compile Include="Reactive\Internal\Stubs.cs" />
  105. <Compile Include="Reactive\Internal\SynchronizationContextExtensions.cs" />
  106. <Compile Include="Reactive\Internal\SynchronizedObserver.cs" />
  107. <Compile Include="Reactive\Internal\SystemClock.cs" />
  108. <Compile Include="Reactive\Internal\SystemClock.Default.cs" />
  109. <Compile Include="Reactive\Notification.cs" />
  110. <Compile Include="Reactive\ObservableBase.cs" />
  111. <Compile Include="Reactive\ObserverBase.cs" />
  112. <Compile Include="Reactive\Unit.cs" />
  113. <Compile Include="Strings_Core.Generated.cs" />
  114. </ItemGroup>
  115. <ItemGroup>
  116. <ProjectReference Include="..\System.Reactive.Interfaces\System.Reactive.Interfaces.csproj">
  117. <Project>{9E9B9C60-98B0-40FA-9C2B-1218D417CAA4}</Project>
  118. <Name>System.Reactive.Interfaces</Name>
  119. </ProjectReference>
  120. </ItemGroup>
  121. <ItemGroup>
  122. <EmbeddedResource Include="Strings_Core.resx" />
  123. </ItemGroup>
  124. <ItemGroup>
  125. <None Include="packages.config" />
  126. </ItemGroup>
  127. <Import Project="..\Import.targets" />
  128. <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
  129. <Import Project="..\packages\Microsoft.Bcl.Build.1.0.10\tools\Microsoft.Bcl.Build.targets" Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.10\tools\Microsoft.Bcl.Build.targets')" />
  130. <Target Name="EnsureBclBuildImported" BeforeTargets="BeforeBuild" Condition="'$(BclBuildImported)' == ''">
  131. <Error Condition="!Exists('..\packages\Microsoft.Bcl.Build.1.0.10\tools\Microsoft.Bcl.Build.targets')" Text="This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=317567." HelpKeyword="BCLBUILD2001" />
  132. <Error Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.10\tools\Microsoft.Bcl.Build.targets')" Text="The build restored NuGet packages. Build the project again to include these packages in the build. For more information, see http://go.microsoft.com/fwlink/?LinkID=317568." HelpKeyword="BCLBUILD2002" />
  133. </Target>
  134. </Project>