c# – 如何确定程序集的构建方式

前端之家收集整理的这篇文章主要介绍了c# – 如何确定程序集的构建方式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用VS2010 / 2012,我想知道是否有办法(可能使用反射)来查看程序集的构建方式.

当我在Debug中运行时,我使用#if DEBUG将调试信息写入控制台.@H_404_3@

但是,当你最终得到一堆程序集时,有没有办法看看它们是如何构建的?获取版本号很简单,但我无法找到如何检查构建类型.@H_404_3@

解决方法

有3种方式:
  1. private bool IsAssemblyDebugBuild(string filepath)
  2. {
  3. return IsAssemblyDebugBuild(Assembly.LoadFile(Path.GetFullPath(filepath)));
  4. }
  5.  
  6. private bool IsAssemblyDebugBuild(Assembly assembly)
  7. {
  8. foreach (var attribute in assembly.GetCustomAttributes(false))
  9. {
  10. var debuggableAttribute = attribute as DebuggableAttribute;
  11. if(debuggableAttribute != null)
  12. {
  13. return debuggableAttribute.IsJITTrackingEnabled;
  14. }
  15. }
  16. return false;
  17. }

或者使用assemblyinfo元数据:@H_404_3@

  1. #if DEBUG
  2. [assembly: AssemblyConfiguration("Debug")]
  3. #else
  4. [assembly: AssemblyConfiguration("Release")]
  5. #endif

或者在代码中使用#if DEBUG的常量@H_404_3@

  1. #if DEBUG
  2. public const bool IsDebug = true;
  3. #else
  4. public const bool IsDebug = false;
  5. #endif

我更喜欢第二种方式,所以我可以通过代码和Windows资源管理器来阅读它@H_404_3@

猜你在找的C#相关文章