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

SandboxDependencyAttribute.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: c204a92db4ab44040c885f14e65389b861fa4a78 (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 SandboxDependencyAttribute : BaseMetadataAttribute {

		public SandboxDependencyAttribute (string relativePathToFile)
		{
			if (string.IsNullOrEmpty (relativePathToFile))
				throw new ArgumentException ("Value cannot be null or empty.", nameof (relativePathToFile));
		}
	}
}