You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
441 B
16 lines
441 B
// Author: Gockner, Simon
|
|
// Created: 2022-09-01
|
|
// Copyright(c) 2022 SimonG. All Rights Reserved.
|
|
|
|
using LightweightIocContainer.Interfaces;
|
|
|
|
namespace LightweightIocContainer.Annotations;
|
|
|
|
/// <summary>
|
|
/// If a constructor is annotated with this attribute it will be ignored by the <see cref="IIocContainer"/>
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Constructor)]
|
|
public class IocIgnoreConstructorAttribute : Attribute
|
|
{
|
|
|
|
} |