1- // Smdn.Reflection.ReverseGenerating.dll (Smdn.Reflection.ReverseGenerating-1.1.5 )
1+ // Smdn.Reflection.ReverseGenerating.dll (Smdn.Reflection.ReverseGenerating-1.1.6 )
22// Name: Smdn.Reflection.ReverseGenerating
3- // AssemblyVersion: 1.1.5 .0
4- // InformationalVersion: 1.1.5+8b0234f9aa81d64e62185c0c566a560c630f934b
3+ // AssemblyVersion: 1.1.6 .0
4+ // InformationalVersion: 1.1.6+407f242e4289093d014484d0f1940c407f03b605
55// TargetFramework: .NETCoreApp,Version=v6.0
66// Configuration: Release
77// Referenced assemblies:
1111// System.Memory, Version=6.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
1212// System.Runtime, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
1313// System.Runtime.InteropServices, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
14+ // System.Threading, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
1415#nullable enable annotations
1516
1617using System ;
@@ -39,19 +40,26 @@ public static class CSharpFormatter {
3940 public static string EscapeString ( string s , bool escapeSingleQuote = false , bool escapeDoubleQuote = false ) { }
4041 public static string FormatAccessibility ( Accessibility accessibility ) { }
4142 public static string FormatParameter ( ParameterInfo p , NullabilityInfoContext ? nullabilityInfoContext , bool typeWithNamespace = true , bool useDefaultLiteral = false ) { }
43+ public static string FormatParameter ( ParameterInfo p , NullabilityInfoContext ? nullabilityInfoContext , object ? nullabilityInfoContextLockObject , bool typeWithNamespace = true , bool useDefaultLiteral = false ) { }
4244 public static string FormatParameter ( ParameterInfo p , bool typeWithNamespace = true , bool useDefaultLiteral = false ) { }
4345 public static string FormatParameterList ( MethodBase m , NullabilityInfoContext ? nullabilityInfoContext , bool typeWithNamespace = true , bool useDefaultLiteral = false ) { }
46+ public static string FormatParameterList ( MethodBase m , NullabilityInfoContext ? nullabilityInfoContext , object ? nullabilityInfoContextLockObject , bool typeWithNamespace = true , bool useDefaultLiteral = false ) { }
4447 public static string FormatParameterList ( MethodBase m , bool typeWithNamespace = true , bool useDefaultLiteral = false ) { }
4548 public static string FormatParameterList ( ParameterInfo [ ] parameterList , NullabilityInfoContext ? nullabilityInfoContext , bool typeWithNamespace = true , bool useDefaultLiteral = false ) { }
49+ public static string FormatParameterList ( ParameterInfo [ ] parameterList , NullabilityInfoContext ? nullabilityInfoContext , object ? nullabilityInfoContextLockObject , bool typeWithNamespace = true , bool useDefaultLiteral = false ) { }
4650 public static string FormatParameterList ( ParameterInfo [ ] parameterList , bool typeWithNamespace = true , bool useDefaultLiteral = false ) { }
4751 public static string FormatSpecialNameMethod ( MethodBase methodOrConstructor , out MethodSpecialName nameType ) { }
4852 public static string FormatTypeName ( this EventInfo ev , NullabilityInfoContext ? nullabilityInfoContext , bool typeWithNamespace = true , bool withDeclaringTypeName = true , bool translateLanguagePrimitiveType = true ) { }
53+ public static string FormatTypeName ( this EventInfo ev , NullabilityInfoContext ? nullabilityInfoContext , object ? nullabilityInfoContextLockObject , bool typeWithNamespace = true , bool withDeclaringTypeName = true , bool translateLanguagePrimitiveType = true ) { }
4954 public static string FormatTypeName ( this EventInfo ev , bool typeWithNamespace = true , bool withDeclaringTypeName = true , bool translateLanguagePrimitiveType = true ) { }
5055 public static string FormatTypeName ( this FieldInfo f , NullabilityInfoContext ? nullabilityInfoContext , bool typeWithNamespace = true , bool withDeclaringTypeName = true , bool translateLanguagePrimitiveType = true ) { }
56+ public static string FormatTypeName ( this FieldInfo f , NullabilityInfoContext ? nullabilityInfoContext , object ? nullabilityInfoContextLockObject , bool typeWithNamespace = true , bool withDeclaringTypeName = true , bool translateLanguagePrimitiveType = true ) { }
5157 public static string FormatTypeName ( this FieldInfo f , bool typeWithNamespace = true , bool withDeclaringTypeName = true , bool translateLanguagePrimitiveType = true ) { }
5258 public static string FormatTypeName ( this ParameterInfo p , NullabilityInfoContext ? nullabilityInfoContext , bool typeWithNamespace = true , bool withDeclaringTypeName = true , bool translateLanguagePrimitiveType = true ) { }
59+ public static string FormatTypeName ( this ParameterInfo p , NullabilityInfoContext ? nullabilityInfoContext , object ? nullabilityInfoContextLockObject , bool typeWithNamespace = true , bool withDeclaringTypeName = true , bool translateLanguagePrimitiveType = true ) { }
5360 public static string FormatTypeName ( this ParameterInfo p , bool typeWithNamespace = true , bool withDeclaringTypeName = true , bool translateLanguagePrimitiveType = true ) { }
5461 public static string FormatTypeName ( this PropertyInfo p , NullabilityInfoContext ? nullabilityInfoContext , bool typeWithNamespace = true , bool withDeclaringTypeName = true , bool translateLanguagePrimitiveType = true ) { }
62+ public static string FormatTypeName ( this PropertyInfo p , NullabilityInfoContext ? nullabilityInfoContext , object ? nullabilityInfoContextLockObject , bool typeWithNamespace = true , bool withDeclaringTypeName = true , bool translateLanguagePrimitiveType = true ) { }
5563 public static string FormatTypeName ( this PropertyInfo p , bool typeWithNamespace = true , bool withDeclaringTypeName = true , bool translateLanguagePrimitiveType = true ) { }
5664 public static string FormatTypeName ( this Type t , ICustomAttributeProvider ? attributeProvider = null , bool typeWithNamespace = true , bool withDeclaringTypeName = true , bool translateLanguagePrimitiveType = true ) { }
5765 public static string FormatValueDeclaration ( object ? val , Type typeOfValue , bool typeWithNamespace = true , bool findConstantField = false , bool useDefaultLiteral = false ) { }
@@ -93,6 +101,7 @@ public MemberDeclarationOptions() {}
93101 public MethodBodyOption AccessorBody { get ; set ; }
94102 public MethodBodyOption MethodBody { get ; set ; }
95103 public NullabilityInfoContext ? NullabilityInfoContext { get ; set ; }
104+ public object ? NullabilityInfoContextLockObject { get ; set ; }
96105 public bool OmitEndOfStatement { get ; set ; }
97106 public bool WithAccessibility { get ; set ; }
98107 public bool WithDeclaringTypeName { get ; set ; }
@@ -111,6 +120,7 @@ public class TypeDeclarationOptions {
111120 public TypeDeclarationOptions ( ) { }
112121
113122 public NullabilityInfoContext ? NullabilityInfoContext { get ; set ; }
123+ public object ? NullabilityInfoContextLockObject { get ; set ; }
114124 public bool OmitEndOfStatement { get ; set ; }
115125 public bool OmitEnumUnderlyingTypeIfPossible { get ; set ; }
116126 public bool WithAccessibility { get ; set ; }
@@ -141,5 +151,5 @@ public virtual GeneratorOptions Clone() {}
141151 object ICloneable . Clone ( ) { }
142152 }
143153}
144- // API list generated by Smdn.Reflection.ReverseGenerating.ListApi.MSBuild.Tasks v1.2.1 .0.
154+ // API list generated by Smdn.Reflection.ReverseGenerating.ListApi.MSBuild.Tasks v1.2.2 .0.
145155// Smdn.Reflection.ReverseGenerating.ListApi.Core v1.2.0.0 (https://github.com/smdn/Smdn.Reflection.ReverseGenerating)
0 commit comments