Skip to content

Commit

Permalink
Add PlatformEnlightenmentProvider in Core. dunno what it is for though.
Browse files Browse the repository at this point in the history
  • Loading branch information
Atsushi Eno committed Mar 11, 2012
1 parent 426db0f commit cb5c829
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
4 changes: 4 additions & 0 deletions System.Reactive.Core/System.Reactive.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@
<Compile Include="..\System.Reactive\System.Reactive.Concurrency\ScheduledItemImpl.cs">
<Link>System.Reactive.Concurrency\ScheduledItemImpl.cs</Link>
</Compile>
<Compile Include="System.Reactive\PlatformEnlightenmentProvider.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
Expand All @@ -129,4 +130,7 @@
<Name>System.Reactive.Interfaces</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="System.Reactive.PlatformServices\" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#if REACTIVE_2_0
using System;
using System.ComponentModel;
using System.Reactive;

namespace System.Reactive
{
[EditorBrowsable (EditorBrowsableState.Never)]
public static class PlatformEnlightenmentProvider
{
public static IPlatformEnlightenmentProvider Current {
get { throw new NotImplementedException (); }
}
}
}

#endif

0 comments on commit cb5c829

Please sign in to comment.