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

RequiresOnAttributeCtorAttribute.cs « Dependencies « RequiresCapability « Mono.Linker.Tests.Cases « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a6c113db2826b71e281eebd3a3187024f5aea933 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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;
using System.Diagnostics.CodeAnalysis;

namespace Mono.Linker.Tests.Cases.RequiresCapability.Dependencies
{
	public class RequiresOnAttributeCtorAttribute : Attribute
	{
		[RequiresUnreferencedCode ("Message from attribute's ctor.")]
		public RequiresOnAttributeCtorAttribute ()
		{
		}
	}
}