Skip to content

Commit

Permalink
v9.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Abraham committed Dec 6, 2024
1 parent f2a5ee5 commit 59a313e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ public static IServiceCollection AddGraphQL(this IServiceCollection @this)
/// <param name="options">
/// Place to make calls to:<br/>
/// <c>
/// <see cref="OutputGraphType{T}.AddField(PropertyInfo)"/><br/>
/// <see cref="OutputGraphType{T}.AddField(MethodInfo)"/><br/>
/// <see cref="OutputGraphType{T}.AddField(PropertyInfo)<br/>
/// <see cref="OutputGraphType{T}.AddField{ITEM}(MethodInfo, Func{T, ITEM[], ITEM})"/>
/// <see cref="OutputGraphType{T}.AddField{ITEM}(MethodInfo, Func{T, ITEM[], ITEM[]})"/>
/// </c>
Expand Down
2 changes: 1 addition & 1 deletion src/TypeCache.GraphQL/TypeCache.GraphQL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Nullable>enable</Nullable>
<RootNamespace>TypeCache.GraphQL</RootNamespace>
<PackageId>TypeCache.GraphQL</PackageId>
<Version>9.0.0</Version>
<Version>9.0.1</Version>
<Authors>Samuel Abraham &lt;sam987883@gmail.com&gt;</Authors>
<Company>Samuel Abraham &lt;sam987883@gmail.com&gt;</Company>
<Title>TypeCache GraphQL</Title>
Expand Down
5 changes: 2 additions & 3 deletions src/TypeCache/Extensions/ReflectionExtensions.FieldInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,9 @@ public partial class ReflectionExtensions
/// The code to set the field is built once and used subsequently.<br/>
/// This is much faster than late binding.
/// </remarks>
/// <param name="instance">Pass <c><see langword="null"/></c> if this is a static field.</param>
[MethodImpl(AggressiveInlining), DebuggerHidden]
public static void SetStaticValue(this FieldInfo @this, object? instance)
=> TypeStore.StaticFieldSetActions[@this.FieldHandle](instance);
public static void SetStaticValue(this FieldInfo @this, object? value)
=> TypeStore.StaticFieldSetActions[@this.FieldHandle](value);

[MethodImpl(AggressiveInlining), DebuggerHidden]
public static Action<object?> SetStaticValueAction(this FieldInfo @this)
Expand Down

0 comments on commit 59a313e

Please sign in to comment.