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

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

namespace Mono.Linker.Tests.Cases.Expectations.Metadata {
	[AttributeUsage (AttributeTargets.Class)]
	public class CoreLinkAttribute : BaseMetadataAttribute {
		public readonly string Value;

		public CoreLinkAttribute (string value)
		{
			Value = value;
		}
	}
}