-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move ObservableCollectionListSource to Abstractions package (#21595)
Fixes #20034
- Loading branch information
1 parent
de4d80a
commit 90105b0
Showing
5 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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<>))] |