我正在使用VS2010 / 2012,我想知道是否有办法(可能使用反射)来查看程序集的构建方式.
当我在Debug中运行时,我使用#if DEBUG将调试信息写入控制台.@H_404_3@
但是,当你最终得到一堆程序集时,有没有办法看看它们是如何构建的?获取版本号很简单,但我无法找到如何检查构建类型.@H_404_3@
解决方法
有3种方式:
- private bool IsAssemblyDebugBuild(string filepath)
- {
- return IsAssemblyDebugBuild(Assembly.LoadFile(Path.GetFullPath(filepath)));
- }
- private bool IsAssemblyDebugBuild(Assembly assembly)
- {
- foreach (var attribute in assembly.GetCustomAttributes(false))
- {
- var debuggableAttribute = attribute as DebuggableAttribute;
- if(debuggableAttribute != null)
- {
- return debuggableAttribute.IsJITTrackingEnabled;
- }
- }
- return false;
- }
或者使用assemblyinfo元数据:@H_404_3@
- #if DEBUG
- [assembly: AssemblyConfiguration("Debug")]
- #else
- [assembly: AssemblyConfiguration("Release")]
- #endif
- #if DEBUG
- public const bool IsDebug = true;
- #else
- public const bool IsDebug = false;
- #endif