Browse Source

[SL.Core] Use type forwarding as per example

pull/1087/head
JimBobSquarePants 8 years ago
parent
commit
4596853b37
  1. 4
      src/SixLabors.Core/MathF.cs

4
src/SixLabors.Core/MathF.cs

@ -1,9 +1,11 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
#if !NETCOREAPP2_0
using System.Runtime.CompilerServices;
#if NETCOREAPP2_0
[assembly: TypeForwardedTo(typeof(System.MathF))]
#else
namespace System
{
/// <summary>

Loading…
Cancel
Save