Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SetupLinkerCoreActionAttribute.cs « Metadata « Mono.Linker.Tests.Cases.Expectations « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 077dad67237437492cf8371cf913ef63f4856acb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace Mono.Linker.Tests.Cases.Expectations.Metadata
{
	[AttributeUsage (AttributeTargets.Class, AllowMultiple = false)]
	public class SetupLinkerCoreActionAttribute : BaseMetadataAttribute
	{
		public SetupLinkerCoreActionAttribute (string action)
		{
			if (string.IsNullOrEmpty (action))
				throw new ArgumentNullException (nameof (action));
		}
	}
}