我创建了一个包装类来初始化我的log4net日志记录对象,以便更轻松地在ThreadContext中建立自定义属性。这发生在我已经建立的类库以及许多其他有用的函数中。为了加入所有各种库,我还使用“/internalize”开关向ILMerge添加了AfterBuild目标。

ILMerge所针对的库中对该初始化器方法的所有引用似乎都可以正常工作。但是,当我在其他地方引用此合并的库时。我的实现引发保护级别错误。我尝试将各种东西添加到可选的exclude(/internalize:excludes.txt)文件中,但这似乎不起作用。

示例excludes.txt:

log4net.Config
log4net.ThreadContext
log4net.LogManager

其他人遇到过这个问题吗?

[编辑]:

这是代码:
 [assembly: log4net.Config.XmlConfigurator(Watch = true)]
namespace Logging
{
    public static class Log4NetThreadContext
    {
        public static ILog Initialize(Type declaringType)
        {
            // Read from configuration
            XmlConfigurator.Configure();

            // Set Properties
            ThreadContext.Properties["ID"] = ...
                ...
                ...
                ...

            if(System.Diagnostics.Debugger.IsAttached)
            {
                // Special debugging logger
                return LogManager.GetLogger("DEBUG_MODE");
            }
            else
            {
                // Root logger
                return LogManager.GetLogger(declaringType);
            }
        }
    }
}

我正在像这样利用这段代码。
private static readonly Type declaringType =
    MethodBase.GetCurrentMethod().DeclaringType;
private static readonly ILog log =
    Log4NetThreadContext.Initialize(declaringType);
...
log.Info("Something useful");

[编辑]:

这是我的AfterBuild目标
<Target Name="AfterBuild">
<CreateItem Include="@(ReferenceCopyLocalPaths)" Condition="'%(Extension)'=='.dll'">
  <Output ItemName="AssembliesToMerge" TaskParameter="Include" />
</CreateItem>
<Message Text="MERGING: @(AssembliesToMerge->'%(Filename)')" Importance="High" />
<Exec Command="&quot;$(ProgramFiles)\Microsoft\Ilmerge\Ilmerge.exe&quot; /targetplatform:v2 /log /internalize:&quot;ilmerge.excludes.txt&quot; /keyfile:$(AssemblyOriginatorKeyFile) /out:@(MainAssembly) &quot;@(IntermediateAssembly)&quot; @(AssembliesToMerge->'&quot;%(FullPath)&quot;', ' ')" />
<Delete Files="@(ReferenceCopyLocalPaths->'$(OutDir)%(DestinationSubDirectory)%(Filename)%(Extension)')" />

总的来说,有没有更好的方法可以调试保护级别问题?
Log4NetThreadContext.Initialize(System.Type)' is inaccessible due to its protection level

最佳答案

最终,最简单的方法是将log4net从ilmerge进程中完全排除,并将其作为依赖程序集进行维护。

因此,在遭受酷刑之后,这是“不太明显”的解决方案。

毕竟不需要排除,真正的答案是在ilmerge中使用/lib:[path]开关。

我更新了AfterBuild目标,从/internalize开关中删除了排除对象。接下来,我添加了/lib开关以传递log4net dll的位置作为从属引用。看起来像这样:

<Target Name="AfterBuild">
  <CreateItem Include="@(ReferenceCopyLocalPaths)" Condition="'%(Extension)'=='.dll'">
    <Output ItemName="AssembliesToMerge" TaskParameter="Include" />
  </CreateItem>
  <Message Text="MERGING: @(AssembliesToMerge->'%(Filename)')" Importance="High" />
  <Exec Command="&quot;$(ProgramFiles)\Microsoft\Ilmerge\Ilmerge.exe&quot; /lib:..\packages\log4net.2.0.0\lib\net35-full\ /targetplatform:v2 /log /internalize /keyfile:$(AssemblyOriginatorKeyFile) /out:@(MainAssembly) &quot;@(IntermediateAssembly)&quot; @(AssembliesToMerge->'&quot;%(FullPath)&quot;', ' ')" />
  <Delete Files="@(ReferenceCopyLocalPaths->'$(OutDir)%(DestinationSubDirectory)%(Filename)%(Extension)')" />
</Target>

此外,我还添加了另一个目标来限制合并中包含的程序集的列表,方法是将唯一的<ILMerge />元素添加到位于.csproj文件中的引用中
<Target Name="AfterResolveReferences">
  <Message Text="Filtering out ILMerge assemblies from ReferenceCopyLocalPaths..." Importance="High" />
  <ItemGroup>
    <ReferenceCopyLocalPaths Remove="@(ReferenceCopyLocalPaths)" Condition="'%(ReferenceCopyLocalPaths.ILMerge)'=='false'" />
  </ItemGroup>
</Target>

因此,引用元素的列出方式如下:
...
<Reference Include="Ionic.Zip">
  <HintPath>..\packages\DotNetZip.1.9.1.8\lib\net20\Ionic.Zip.dll</HintPath>
  <ILMerge>True</ILMerge>
</Reference>
<Reference Include="log4net">
  <HintPath>..\packages\log4net.2.0.0\lib\net35-full\log4net.dll</HintPath>
  <ILMerge>False</ILMerge>
...

可能存在一个更好的(编程)替代方法,用于将ILMerge = False值显式添加到/lib开关,但是在我的情况下,这是足够的,因为只有一个排除项。否则,您可能需要手动添加其他路径。

我列出的“AfterResolveReferences”技术值得称赞于http://www.hanselman.com/blog/MixingLanguagesInASingleAssemblyInVisualStudioSeamlesslyWithILMergeAndMSBuild.aspx

希望这对某人有帮助!

关于c# - 将ILMerge与log4net一起使用会导致 "inaccessible due to protection level"错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14409010/

10-11 04:07