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

SkipPeVerifyAttribute.cs « Assertions « Mono.Linker.Tests.Cases.Expectations « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 37a37e33710a5f874e55a1e69abd798594bdf1f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;

namespace Mono.Linker.Tests.Cases.Expectations.Assertions
{

	public enum SkipPeVerifyForToolchian
	{
		Pedump
	}

	[AttributeUsage (AttributeTargets.Class, AllowMultiple = true)]
	public class SkipPeVerifyAttribute : BaseExpectedLinkedBehaviorAttribute
	{
		public SkipPeVerifyAttribute ()
		{
		}

		public SkipPeVerifyAttribute (SkipPeVerifyForToolchian toolchain)
		{
		}

		public SkipPeVerifyAttribute (string assemblyName)
		{
		}
	}
}