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

SkipRemainingErrorsValidationAttribute.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: bdedcc62874b8679fbf775e26cd7ce1603a6b87d (plain)
1
2
3
4
5
6
7
8
9
10
using System;

namespace Mono.Linker.Tests.Cases.Expectations.Assertions
{
	[AttributeUsage (AttributeTargets.Class, AllowMultiple = false)]
	public class SkipRemainingErrorsValidationAttribute : BaseExpectedLinkedBehaviorAttribute
	{
		public SkipRemainingErrorsValidationAttribute () { }
	}
}