Skip to content

Commit

Permalink
Merge pull request #1622 from reactiveui/develop
Browse files Browse the repository at this point in the history
Ship ReactiveUI v8.0.1
  • Loading branch information
ghuntley committed May 9, 2018
2 parents fa780f0 + 23949ce commit c2e58fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ReactiveUI/ReactiveList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace ReactiveUI
[DebuggerTypeProxy(typeof(CollectionDebugView<>))]
public class ReactiveList<T> : IReactiveList<T>, IReadOnlyReactiveList<T>, IList
{
#if NET_45
#if NET_461
public event NotifyCollectionChangedEventHandler CollectionChanging;

protected virtual void raiseCollectionChanging(NotifyCollectionChangedEventArgs args)
Expand Down
2 changes: 1 addition & 1 deletion src/ReactiveUI/ReactiveObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace ReactiveUI
[DataContract]
public class ReactiveObject : IReactiveNotifyPropertyChanged<IReactiveObject>, IHandleObservableErrors, IReactiveObject
{
#if NET_45
#if NET_461
public event PropertyChangingEventHandler PropertyChanging;

void IReactiveObject.RaisePropertyChanging(PropertyChangingEventArgs args)
Expand Down
2 changes: 1 addition & 1 deletion src/ReactiveUI/WeakEventManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

namespace ReactiveUI
{
#if !NET_45
#if !NET_461
internal class CanExecuteChangedEventManager : WeakEventManager<ICommand, EventHandler, EventArgs>
{
}
Expand Down

0 comments on commit c2e58fa

Please sign in to comment.