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

SetupCSharpCompilerToUseAttribute.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: 0e86a36debbb6d0b13e1506daafd61ed440a465b (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 = false)]
	public class SetupCSharpCompilerToUseAttribute : BaseMetadataAttribute {
		public SetupCSharpCompilerToUseAttribute (string name)
		{
			if (string.IsNullOrEmpty (name))
				throw new ArgumentNullException (nameof (name));
		}
	}
}