• R/O
  • SSH
  • HTTPS

drfx: Commit


Commit MetaInfo

Revision132 (tree)
Time2010-02-19 12:35:13
Authorsasaminn

Log Message

NEW: 違反メッセージが何 (アセンブリ、名前空間、型、メンバー) に対する違反なのかを表す列挙型を追加

Change Summary

Incremental Difference

--- drfx/trunk/src/Explorer/Report/WarningTarget.cs (nonexistent)
+++ drfx/trunk/src/Explorer/Report/WarningTarget.cs (revision 132)
@@ -0,0 +1,16 @@
1+using System;
2+
3+namespace Sasa.QualityTools.DrFx.Explorer.Report
4+{
5+ /// <summary>
6+ /// 違反メッセージが何に対する違反なのかを表します。
7+ /// </summary>
8+ public enum WarningTarget
9+ {
10+ Unknown = 0,
11+ Assembly,
12+ Namespace,
13+ Type,
14+ Member
15+ }
16+}
Show on old repository browser