Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable AoT for net8 in Release #417

Merged
merged 8 commits into from
Jun 3, 2024
Prev Previous commit
Update components/Collections/src/IncrementalLoadingCollection/Increm…
  • Loading branch information
Arlodotexe authored May 21, 2024
commit 2274eabbb9230d664a3a0948bfdadc1939302add
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ private set
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("This constructor is not AOT compatible and will be removed in a future version.")]
#endif
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("This constructor is not AOT compatible and will be removed in a future version.")]
[Obsolete("This constructor is not AOT compatible and will be removed in a future version. Use the other constructor and provide a source collection to use.")]
public IncrementalLoadingCollection(int itemsPerPage = 20, Action Action Action<Exception> >
: this(Activator.CreateInstance<TSource>(), itemsPerPage, onStartLoading, onEndLoading, onError)
{
Expand Down
Loading