Skip to content
This repository has been archived by the owner on Jan 27, 2019. It is now read-only.

Commit

Permalink
Merge pull request #342 from caverna/fix_xml_comment
Browse files Browse the repository at this point in the history
Fix XML comments warning
  • Loading branch information
yck1509 committed Oct 13, 2015
2 parents 32fb933 + b89217a commit 2396d4f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions Confuser.Core/DnlibUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ public static IEnumerable<IDnlibDef> FindDefinitions(this TypeDef typeDef) {
/// Determines whether the specified type is visible outside the containing assembly.
/// </summary>
/// <param name="typeDef">The type.</param>
/// <param name="exeNonPublic">Visibility of executable modules.</param>
/// <returns><c>true</c> if the specified type is visible outside the containing assembly; otherwise, <c>false</c>.</returns>
public static bool IsVisibleOutside(this TypeDef typeDef, bool exeNonPublic = true) {
// Assume executable modules' type is not visible
Expand Down
1 change: 1 addition & 0 deletions Confuser.Core/Marker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ protected Rules ParseRules(ConfuserProject proj, ProjectModule module, ConfuserC
/// <param name="context">The working context.</param>
/// <param name="target">The target definition.</param>
/// <param name="rules">The rules.</param>
/// <param name="baseSettings">The base settings.</param>
protected void ApplyRules(ConfuserContext context, IDnlibDef target, Rules rules, ProtectionSettings baseSettings = null) {
var ret = baseSettings == null ? new ProtectionSettings() : new ProtectionSettings(baseSettings);
foreach (var i in rules) {
Expand Down
3 changes: 3 additions & 0 deletions Confuser.Core/ObfAttrMarker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
namespace Confuser.Core {
using Rules = Dictionary<Rule, PatternExpression>;

/// <summary>
/// Obfuscation Attribute Marker
/// </summary>
public class ObfAttrMarker : Marker {
struct ObfuscationAttributeInfo {
public bool? ApplyToMembers;
Expand Down

0 comments on commit 2396d4f

Please sign in to comment.