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: 09174ab0577d06df98e44131a9e13da9f07c0438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;

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