<PackageReference Include="NUnit" Version="3.6.0" />

AssemblyExtensions

public static class AssemblyExtensions
Extensions for Assembly that are not available in pre-4.5 .NET releases
using System; using System.Reflection; namespace NUnit.Compatibility { public static class AssemblyExtensions { public static T GetCustomAttribute<T>(this Assembly assembly) where T : Attribute { T[] array = (T[])assembly.GetCustomAttributes(typeof(T), false); if (array.Length == 0) return null; return array[0]; } } }