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

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

namespace Mono.Linker.Tests.Cases.Expectations.Assertions {
	/// <summary>
	/// Verifies that an assembly does exist in the output directory
	/// </summary>
	[AttributeUsage (AttributeTargets.Class | AttributeTargets.Delegate, AllowMultiple = true, Inherited = false)]
	public class KeptAssemblyAttribute : KeptAttribute {
		public readonly string FileName;

		public KeptAssemblyAttribute (string fileName)
		{
			FileName = fileName;
		}
	}
}