Skip to content

Commit

Permalink
Merge pull request #207 from smdn/releases/Smdn.Fundamental.Reflectio…
Browse files Browse the repository at this point in the history
…n-3.5.0-1703421155

Release main/Smdn.Fundamental.Reflection-3.5.0
  • Loading branch information
smdn authored Dec 24, 2023
2 parents 4c5047a + 0692b36 commit a143a9f
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 16 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Smdn.Fundamental.Reflection.dll (Smdn.Fundamental.Reflection-3.4.0)
// Smdn.Fundamental.Reflection.dll (Smdn.Fundamental.Reflection-3.5.0)
// Name: Smdn.Fundamental.Reflection
// AssemblyVersion: 3.4.0.0
// InformationalVersion: 3.4.0+d21bbefe0b9d2b7ce768d8d377418d43aafc7e9a
// AssemblyVersion: 3.5.0.0
// InformationalVersion: 3.5.0+4c5047ad07bce4305c5e019010c8d404edb30d22
// TargetFramework: .NETFramework,Version=v4.5
// Configuration: Release
// Referenced assemblies:
Expand Down Expand Up @@ -29,6 +29,14 @@ public enum MethodSpecialName : int {
Addition = 16,
BitwiseAnd = 21,
BitwiseOr = 22,
CheckedAddition = 32,
CheckedDecrement = 31,
CheckedDivision = 35,
CheckedExplicit = 36,
CheckedIncrement = 30,
CheckedMultiply = 34,
CheckedSubtraction = 33,
CheckedUnaryNegation = 29,
Constructor = 1,
Decrement = 15,
Division = 19,
Expand All @@ -55,13 +63,15 @@ public enum MethodSpecialName : int {
UnaryNegation = 9,
UnaryPlus = 8,
Unknown = -1,
UnsignedRightShift = 28,
}

public static class EventInfoExtensions {
public static FieldInfo? GetBackingField(this EventInfo ev) {}
public static IEnumerable<MethodInfo> GetMethods(this EventInfo ev) {}
public static IEnumerable<MethodInfo> GetMethods(this EventInfo ev, bool nonPublic) {}
public static bool IsOverride(this EventInfo ev) {}
public static bool IsReadOnly(this EventInfo ev) {}
public static bool IsStatic(this EventInfo ev) {}
}

Expand Down Expand Up @@ -97,6 +107,7 @@ public static bool IsOverride(this MethodInfo m) {}
public static bool IsPropertyAccessorMethod(this MethodInfo m) {}
public static bool IsPropertyGetMethod(this MethodInfo m) {}
public static bool IsPropertySetMethod(this MethodInfo m) {}
public static bool IsReadOnly(this MethodInfo m) {}
public static bool TryGetEventFromAccessorMethod(this MethodInfo? accessor, out EventInfo? ev) {}
public static bool TryGetPropertyFromAccessorMethod(this MethodInfo? accessor, out PropertyInfo? property) {}
}
Expand All @@ -109,6 +120,7 @@ public static bool IsReturnParameter(this ParameterInfo param) {}

public static class PropertyInfoExtensions {
public static FieldInfo? GetBackingField(this PropertyInfo property) {}
public static bool IsAccessorReadOnly(this PropertyInfo property) {}
public static bool IsOverride(this PropertyInfo property) {}
public static bool IsSetMethodInitOnly(this PropertyInfo property) {}
public static bool IsStatic(this PropertyInfo property) {}
Expand Down Expand Up @@ -139,5 +151,5 @@ public static class ICustomAttributeProviderExtensions {
public static IList<CustomAttributeData> GetCustomAttributeDataList(this ICustomAttributeProvider attributeProvider) {}
}
}
// API list generated by Smdn.Reflection.ReverseGenerating.ListApi.MSBuild.Tasks v1.1.7.0.
// API list generated by Smdn.Reflection.ReverseGenerating.ListApi.MSBuild.Tasks v1.3.0.0.
// Smdn.Reflection.ReverseGenerating.ListApi.Core v1.2.0.0 (https://github.com/smdn/Smdn.Reflection.ReverseGenerating)
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Smdn.Fundamental.Reflection.dll (Smdn.Fundamental.Reflection-3.4.0)
// Smdn.Fundamental.Reflection.dll (Smdn.Fundamental.Reflection-3.5.0)
// Name: Smdn.Fundamental.Reflection
// AssemblyVersion: 3.4.0.0
// InformationalVersion: 3.4.0+d21bbefe0b9d2b7ce768d8d377418d43aafc7e9a
// AssemblyVersion: 3.5.0.0
// InformationalVersion: 3.5.0+4c5047ad07bce4305c5e019010c8d404edb30d22
// TargetFramework: .NETCoreApp,Version=v6.0
// Configuration: Release
// Referenced assemblies:
Expand Down Expand Up @@ -31,6 +31,14 @@ public enum MethodSpecialName : int {
Addition = 16,
BitwiseAnd = 21,
BitwiseOr = 22,
CheckedAddition = 32,
CheckedDecrement = 31,
CheckedDivision = 35,
CheckedExplicit = 36,
CheckedIncrement = 30,
CheckedMultiply = 34,
CheckedSubtraction = 33,
CheckedUnaryNegation = 29,
Constructor = 1,
Decrement = 15,
Division = 19,
Expand All @@ -57,13 +65,15 @@ public enum MethodSpecialName : int {
UnaryNegation = 9,
UnaryPlus = 8,
Unknown = -1,
UnsignedRightShift = 28,
}

public static class EventInfoExtensions {
public static FieldInfo? GetBackingField(this EventInfo ev) {}
public static IEnumerable<MethodInfo> GetMethods(this EventInfo ev) {}
public static IEnumerable<MethodInfo> GetMethods(this EventInfo ev, bool nonPublic) {}
public static bool IsOverride(this EventInfo ev) {}
public static bool IsReadOnly(this EventInfo ev) {}
public static bool IsStatic(this EventInfo ev) {}
}

Expand Down Expand Up @@ -99,6 +109,7 @@ public static bool IsOverride(this MethodInfo m) {}
public static bool IsPropertyAccessorMethod(this MethodInfo m) {}
public static bool IsPropertyGetMethod(this MethodInfo m) {}
public static bool IsPropertySetMethod(this MethodInfo m) {}
public static bool IsReadOnly(this MethodInfo m) {}
public static bool TryGetEventFromAccessorMethod(this MethodInfo? accessor, [NotNullWhen(true)] out EventInfo? ev) {}
public static bool TryGetPropertyFromAccessorMethod(this MethodInfo? accessor, [NotNullWhen(true)] out PropertyInfo? property) {}
}
Expand All @@ -111,6 +122,7 @@ public static bool IsReturnParameter(this ParameterInfo param) {}

public static class PropertyInfoExtensions {
public static FieldInfo? GetBackingField(this PropertyInfo property) {}
public static bool IsAccessorReadOnly(this PropertyInfo property) {}
public static bool IsOverride(this PropertyInfo property) {}
public static bool IsSetMethodInitOnly(this PropertyInfo property) {}
public static bool IsStatic(this PropertyInfo property) {}
Expand Down Expand Up @@ -141,5 +153,5 @@ public static class ICustomAttributeProviderExtensions {
public static IList<CustomAttributeData> GetCustomAttributeDataList(this ICustomAttributeProvider attributeProvider) {}
}
}
// API list generated by Smdn.Reflection.ReverseGenerating.ListApi.MSBuild.Tasks v1.1.7.0.
// API list generated by Smdn.Reflection.ReverseGenerating.ListApi.MSBuild.Tasks v1.3.0.0.
// Smdn.Reflection.ReverseGenerating.ListApi.Core v1.2.0.0 (https://github.com/smdn/Smdn.Reflection.ReverseGenerating)
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Smdn.Fundamental.Reflection.dll (Smdn.Fundamental.Reflection-3.4.0)
// Smdn.Fundamental.Reflection.dll (Smdn.Fundamental.Reflection-3.5.0)
// Name: Smdn.Fundamental.Reflection
// AssemblyVersion: 3.4.0.0
// InformationalVersion: 3.4.0+d21bbefe0b9d2b7ce768d8d377418d43aafc7e9a
// AssemblyVersion: 3.5.0.0
// InformationalVersion: 3.5.0+4c5047ad07bce4305c5e019010c8d404edb30d22
// TargetFramework: .NETStandard,Version=v2.0
// Configuration: Release
// Referenced assemblies:
Expand All @@ -28,6 +28,14 @@ public enum MethodSpecialName : int {
Addition = 16,
BitwiseAnd = 21,
BitwiseOr = 22,
CheckedAddition = 32,
CheckedDecrement = 31,
CheckedDivision = 35,
CheckedExplicit = 36,
CheckedIncrement = 30,
CheckedMultiply = 34,
CheckedSubtraction = 33,
CheckedUnaryNegation = 29,
Constructor = 1,
Decrement = 15,
Division = 19,
Expand All @@ -54,13 +62,15 @@ public enum MethodSpecialName : int {
UnaryNegation = 9,
UnaryPlus = 8,
Unknown = -1,
UnsignedRightShift = 28,
}

public static class EventInfoExtensions {
public static FieldInfo? GetBackingField(this EventInfo ev) {}
public static IEnumerable<MethodInfo> GetMethods(this EventInfo ev) {}
public static IEnumerable<MethodInfo> GetMethods(this EventInfo ev, bool nonPublic) {}
public static bool IsOverride(this EventInfo ev) {}
public static bool IsReadOnly(this EventInfo ev) {}
public static bool IsStatic(this EventInfo ev) {}
}

Expand Down Expand Up @@ -96,6 +106,7 @@ public static bool IsOverride(this MethodInfo m) {}
public static bool IsPropertyAccessorMethod(this MethodInfo m) {}
public static bool IsPropertyGetMethod(this MethodInfo m) {}
public static bool IsPropertySetMethod(this MethodInfo m) {}
public static bool IsReadOnly(this MethodInfo m) {}
public static bool TryGetEventFromAccessorMethod(this MethodInfo? accessor, out EventInfo? ev) {}
public static bool TryGetPropertyFromAccessorMethod(this MethodInfo? accessor, out PropertyInfo? property) {}
}
Expand All @@ -108,6 +119,7 @@ public static bool IsReturnParameter(this ParameterInfo param) {}

public static class PropertyInfoExtensions {
public static FieldInfo? GetBackingField(this PropertyInfo property) {}
public static bool IsAccessorReadOnly(this PropertyInfo property) {}
public static bool IsOverride(this PropertyInfo property) {}
public static bool IsSetMethodInitOnly(this PropertyInfo property) {}
public static bool IsStatic(this PropertyInfo property) {}
Expand Down Expand Up @@ -138,5 +150,5 @@ public static class ICustomAttributeProviderExtensions {
public static IList<CustomAttributeData> GetCustomAttributeDataList(this ICustomAttributeProvider attributeProvider) {}
}
}
// API list generated by Smdn.Reflection.ReverseGenerating.ListApi.MSBuild.Tasks v1.1.7.0.
// API list generated by Smdn.Reflection.ReverseGenerating.ListApi.MSBuild.Tasks v1.3.0.0.
// Smdn.Reflection.ReverseGenerating.ListApi.Core v1.2.0.0 (https://github.com/smdn/Smdn.Reflection.ReverseGenerating)
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Smdn.Fundamental.Reflection.dll (Smdn.Fundamental.Reflection-3.4.0)
// Smdn.Fundamental.Reflection.dll (Smdn.Fundamental.Reflection-3.5.0)
// Name: Smdn.Fundamental.Reflection
// AssemblyVersion: 3.4.0.0
// InformationalVersion: 3.4.0+d21bbefe0b9d2b7ce768d8d377418d43aafc7e9a
// AssemblyVersion: 3.5.0.0
// InformationalVersion: 3.5.0+4c5047ad07bce4305c5e019010c8d404edb30d22
// TargetFramework: .NETStandard,Version=v2.1
// Configuration: Release
// Referenced assemblies:
Expand Down Expand Up @@ -29,6 +29,14 @@ public enum MethodSpecialName : int {
Addition = 16,
BitwiseAnd = 21,
BitwiseOr = 22,
CheckedAddition = 32,
CheckedDecrement = 31,
CheckedDivision = 35,
CheckedExplicit = 36,
CheckedIncrement = 30,
CheckedMultiply = 34,
CheckedSubtraction = 33,
CheckedUnaryNegation = 29,
Constructor = 1,
Decrement = 15,
Division = 19,
Expand All @@ -55,13 +63,15 @@ public enum MethodSpecialName : int {
UnaryNegation = 9,
UnaryPlus = 8,
Unknown = -1,
UnsignedRightShift = 28,
}

public static class EventInfoExtensions {
public static FieldInfo? GetBackingField(this EventInfo ev) {}
public static IEnumerable<MethodInfo> GetMethods(this EventInfo ev) {}
public static IEnumerable<MethodInfo> GetMethods(this EventInfo ev, bool nonPublic) {}
public static bool IsOverride(this EventInfo ev) {}
public static bool IsReadOnly(this EventInfo ev) {}
public static bool IsStatic(this EventInfo ev) {}
}

Expand Down Expand Up @@ -97,6 +107,7 @@ public static bool IsOverride(this MethodInfo m) {}
public static bool IsPropertyAccessorMethod(this MethodInfo m) {}
public static bool IsPropertyGetMethod(this MethodInfo m) {}
public static bool IsPropertySetMethod(this MethodInfo m) {}
public static bool IsReadOnly(this MethodInfo m) {}
public static bool TryGetEventFromAccessorMethod(this MethodInfo? accessor, [NotNullWhen(true)] out EventInfo? ev) {}
public static bool TryGetPropertyFromAccessorMethod(this MethodInfo? accessor, [NotNullWhen(true)] out PropertyInfo? property) {}
}
Expand All @@ -109,6 +120,7 @@ public static bool IsReturnParameter(this ParameterInfo param) {}

public static class PropertyInfoExtensions {
public static FieldInfo? GetBackingField(this PropertyInfo property) {}
public static bool IsAccessorReadOnly(this PropertyInfo property) {}
public static bool IsOverride(this PropertyInfo property) {}
public static bool IsSetMethodInitOnly(this PropertyInfo property) {}
public static bool IsStatic(this PropertyInfo property) {}
Expand Down Expand Up @@ -139,5 +151,5 @@ public static class ICustomAttributeProviderExtensions {
public static IList<CustomAttributeData> GetCustomAttributeDataList(this ICustomAttributeProvider attributeProvider) {}
}
}
// API list generated by Smdn.Reflection.ReverseGenerating.ListApi.MSBuild.Tasks v1.1.7.0.
// API list generated by Smdn.Reflection.ReverseGenerating.ListApi.MSBuild.Tasks v1.3.0.0.
// Smdn.Reflection.ReverseGenerating.ListApi.Core v1.2.0.0 (https://github.com/smdn/Smdn.Reflection.ReverseGenerating)

0 comments on commit a143a9f

Please sign in to comment.