- remove not needed annotations

pull/57/head
Simon G 4 years ago
parent 52b9a4cf11
commit 3485b93d84
  1. 4
      LightweightIocContainer/Exceptions/IocContainerException.cs
  2. 1
      LightweightIocContainer/LightweightIocContainer.csproj

@ -4,7 +4,6 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using JetBrains.Annotations;
namespace LightweightIocContainer.Exceptions namespace LightweightIocContainer.Exceptions
{ {
@ -38,7 +37,6 @@ namespace LightweightIocContainer.Exceptions
/// <summary> /// <summary>
/// The inner exceptions of the <see cref="IocContainerException"/> /// The inner exceptions of the <see cref="IocContainerException"/>
/// </summary> /// </summary>
[UsedImplicitly] public List<Exception> InnerExceptions { get; protected init; }
public List<Exception> InnerExceptions { get; protected set; }
} }
} }

@ -23,7 +23,6 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2021.3.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets> <PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

Loading…
Cancel
Save