Skip to content

Commit

Permalink
R3 buildable
Browse files Browse the repository at this point in the history
  • Loading branch information
neuecc committed Dec 10, 2023
1 parent 10c2eee commit 5bc6faa
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions sandbox/ConsoleApp1/Program.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Microsoft.Extensions.Logging;
using R2;
using R2.Internal;
using R3;
using R3.Internal;
using System.Reactive;
using System.Reactive.Concurrency;
using System.Reactive.Linq;
Expand Down
2 changes: 1 addition & 1 deletion src/R3/EventFactory.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using R2.Internal;
using R3.Internal;

namespace R3;

Expand Down
2 changes: 1 addition & 1 deletion src/R3/FrameProvider.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using R2.Internal;
using R3.Internal;

namespace R3;

Expand Down
2 changes: 1 addition & 1 deletion src/R3/Operators/Delay.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using R2.Internal;
using R3.Internal;

namespace R3;

Expand Down
2 changes: 1 addition & 1 deletion src/R3/Operators/Return.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using R2.Internal;
using R3.Internal;

namespace R3;

Expand Down
2 changes: 1 addition & 1 deletion src/R3/Publisher.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using R2.Internal;
using R3.Internal;
using System.Runtime.CompilerServices;

namespace R3;
Expand Down
2 changes: 1 addition & 1 deletion src/R3/ReactiveProperty.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using R2.Internal;
using R3.Internal;
using System.Runtime.CompilerServices;

namespace R3;
Expand Down
2 changes: 1 addition & 1 deletion src/R3/SingleAssignmentDisposableCore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public IDisposable? Disposable
var field = Volatile.Read(ref current);
if (field == DisposedSentinel.Instance)
{
return R2.Disposable.Empty; // don't expose sentinel
return R3.Disposable.Empty; // don't expose sentinel
}
return field;
}
Expand Down
2 changes: 1 addition & 1 deletion src/R3/SubscriptionTracker.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Microsoft.Extensions.Logging;
using R2.Internal;
using R3.Internal;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices;
Expand Down

0 comments on commit 5bc6faa

Please sign in to comment.