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

KeepTypeForwarderOnlyAssembliesAttribute.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: ef00ca5f5eafe4a9c63de5743236538a917ce33e (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)]
	public sealed class KeepTypeForwarderOnlyAssembliesAttribute : BaseMetadataAttribute {
		public KeepTypeForwarderOnlyAssembliesAttribute (string value)
		{
			if (string.IsNullOrEmpty (value))
				throw new ArgumentException ("Value cannot be null or empty.", nameof (value));
		}
	}
}