A game framework written with osu! in mind.
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2// See the LICENCE file in the repository root for full licence text.
3
4using System;
5
6namespace osu.Framework.Testing
7{
8 /// <summary>
9 /// Indicates that a type should be excluded from dynamic compilation. Does not affect derived types.
10 /// </summary>
11 /// <remarks>
12 /// This should be used as sparingly as possible for cases where compiling a type changes fundamental testing components (e.g. <see cref="TestBrowser"/>).
13 /// </remarks>
14 [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface | AttributeTargets.Enum, Inherited = false)]
15 public class ExcludeFromDynamicCompileAttribute : Attribute
16 {
17 }
18}