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

SetupCompileArgumentAttribute.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: bec6d93c1298652ec82b6f13f7406f16833ab223 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

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