Skip to content

Commit

Permalink
Move ObservableCollectionListSource to Abstractions package (#21595)
Browse files Browse the repository at this point in the history
Fixes #20034
  • Loading branch information
ajcvickers authored Jul 15, 2020
1 parent de4d80a commit 90105b0
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
using Microsoft.EntityFrameworkCore.ChangeTracking.Internal;
using Microsoft.EntityFrameworkCore.Utilities;

// ReSharper disable once CheckNamespace
namespace Microsoft.EntityFrameworkCore
{
/// <summary>
Expand Down
12 changes: 12 additions & 0 deletions src/EFCore/Properties/TypeForwards.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System.Runtime.CompilerServices;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.ChangeTracking;
using Microsoft.EntityFrameworkCore.ChangeTracking.Internal;

[assembly:TypeForwardedToAttribute(typeof(ObservableBackedBindingList<>))]
[assembly:TypeForwardedToAttribute(typeof(ObservableCollectionExtensions))]
[assembly:TypeForwardedToAttribute(typeof(ObservableCollectionListSource<>))]
[assembly:TypeForwardedToAttribute(typeof(SortableBindingList<>))]

0 comments on commit 90105b0

Please sign in to comment.