Skip to content

Commit f23249d

Browse files
committed
V 1.14
1 parent a156832 commit f23249d

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

PropertyInterception.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,9 @@ public class MyConfiguration
9292
}
9393

9494
public string Property { get; set; }
95+
96+
[InterceptIgnore]
97+
public string UntouchedProperty { get; set; }
9598
}
9699
```
97100

@@ -123,6 +126,8 @@ public class MyConfiguration
123126
this.SetValue<string>(nameof(Property), typeof(string), MyConfiguration.<Property>k__PropertyInfo, FieldInfo.GetFieldFromHandle(__fieldref(MyConfiguration.<Property>k__BackingField)), (object)value, value, out this.<Property>k__BackingField);
124127
}
125128
}
129+
130+
public string UntouchedProperty { get; set; }
126131
}
127132
```
128133

Relase notes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
**1.14.0.0**
2+
- Fix #8: Hang at runtime if generic class uses property info in interceptor
3+
14
**1.13.0.0**
25
- Fine-tune #6 to support get-only properties.
36

Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55

66
internal static class Product
77
{
8-
public const string Version = "1.13.0.0";
8+
public const string Version = "1.14.0.0";
99
}

0 commit comments

Comments
 (0)