Skip to content

Commit

Permalink
Limit fake methods to NET Standard 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hartez committed Jul 27, 2023
1 parent 6f6ef22 commit ce10d27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Core/src/Core/IContentView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public interface IContentView : IView, IPadding, ICrossPlatformLayout
/// </summary>
IView? PresentedContent { get; }

#if NETSTANDARD
#if NETSTANDARD2_0
/// <summary>
/// This interface method is provided as a stub for .NET Standard
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion src/Core/src/Core/ILayout.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public interface ILayout : IView, IContainer, ISafeAreaView, IPadding, ICrossPla
/// </summary>
bool ClipsToBounds { get; }

#if NETSTANDARD
#if NETSTANDARD2_0
/// <summary>
/// This interface method is provided as a stub for .NET Standard
/// </summary>
Expand Down

0 comments on commit ce10d27

Please sign in to comment.