1
- // Smdn.Reflection.ReverseGenerating.ListApi.Core.dll (Smdn.Reflection.ReverseGenerating.ListApi.Core-1.1.1 )
1
+ // Smdn.Reflection.ReverseGenerating.ListApi.Core.dll (Smdn.Reflection.ReverseGenerating.ListApi.Core-1.1.2 )
2
2
// Name: Smdn.Reflection.ReverseGenerating.ListApi.Core
3
- // AssemblyVersion: 1.1.1 .0
4
- // InformationalVersion: 1.1.1+c427f8c147936a9aec90fa59918071264114150c
3
+ // AssemblyVersion: 1.1.2 .0
4
+ // InformationalVersion: 1.1.2+3059a983a624895dd6329f952eac8aad840a581f
5
5
// TargetFramework: .NETCoreApp,Version=v6.0
6
6
// Configuration: Release
7
- #nullable enable annotations
8
7
9
8
using System ;
10
9
using System . Collections . Generic ;
11
10
using System . Diagnostics . CodeAnalysis ;
12
11
using System . IO ;
13
12
using System . Reflection ;
13
+ using System . Runtime . CompilerServices ;
14
14
using System . Runtime . Versioning ;
15
15
using Microsoft . Extensions . Logging ;
16
16
using Smdn . Reflection . ReverseGenerating ;
17
17
using Smdn . Reflection . ReverseGenerating . ListApi ;
18
18
19
19
namespace Smdn . Reflection . ReverseGenerating . ListApi {
20
+ [ Nullable ( byte . MinValue ) ]
21
+ [ NullableContext ( 1 ) ]
20
22
public class ApiListWriter {
21
23
public ApiListWriter ( TextWriter baseWriter , Assembly assembly , ApiListWriterOptions options ) { }
22
24
@@ -26,7 +28,10 @@ public void WriteAssemblyInfoHeader() {}
26
28
public void WriteExportedTypes ( ) { }
27
29
}
28
30
31
+ [ Nullable ( byte . MinValue ) ]
32
+ [ NullableContext ( 1 ) ]
29
33
public class ApiListWriterOptions : GeneratorOptions {
34
+ [ NullableContext ( byte . MinValue ) ]
30
35
public class WriterOptions {
31
36
public WriterOptions ( ) { }
32
37
@@ -40,28 +45,39 @@ public ApiListWriterOptions() {}
40
45
}
41
46
42
47
public static class AssemblyExtensions {
43
- [ return : MaybeNull ] public static TValue ? GetAssemblyMetadataAttributeValue < TAssemblyMetadataAttribute , TValue > ( this Assembly assm ) where TAssemblyMetadataAttribute : Attribute { }
48
+ [ NullableContext ( 1 ) ]
49
+ [ return : MaybeNull ] public static TValue GetAssemblyMetadataAttributeValue < TAssemblyMetadataAttribute , TValue > ( this Assembly assm ) where TAssemblyMetadataAttribute : Attribute { }
44
50
}
45
51
52
+ [ Nullable ( byte . MinValue ) ]
53
+ [ NullableContext ( 1 ) ]
46
54
public static class AssemblyLoader {
47
- [ return : MaybeNull ] public static TResult ? UsingAssembly < TArg , TResult > ( FileInfo assemblyFile , bool loadIntoReflectionOnlyContext , TArg ? arg , Func < Assembly , TArg ? , TResult ? > actionWithLoadedAssembly , out WeakReference ? context , ILogger ? logger = null ) { }
55
+ [ return : MaybeNull ] public static TResult UsingAssembly < TArg , TResult > ( FileInfo assemblyFile , bool loadIntoReflectionOnlyContext , TArg arg , Func < Assembly , TArg , TResult > actionWithLoadedAssembly , [ Nullable ( 2 ) ] out WeakReference context , [ Nullable ( 2 ) ] ILogger logger = null ) { }
48
56
}
49
57
58
+ [ Nullable ( byte . MinValue ) ]
59
+ [ NullableContext ( 1 ) ]
50
60
public static class AttributeFilter {
51
61
public static readonly AttributeTypeFilter Default ; // = "Smdn.Reflection.ReverseGenerating.AttributeTypeFilter"
52
62
}
53
63
54
64
public static class FrameworkMonikers {
55
- public static bool TryGetMoniker ( FrameworkName frameworkName , string ? osSpecifier , [ NotNullWhen ( true ) ] out string ? frameworkMoniker ) { }
65
+ [ NullableContext ( 2 ) ]
66
+ public static bool TryGetMoniker ( [ Nullable ( 1 ) ] FrameworkName frameworkName , string osSpecifier , [ NotNullWhen ( true ) ] out string frameworkMoniker ) { }
56
67
}
57
68
69
+ [ Nullable ( byte . MinValue ) ]
70
+ [ NullableContext ( 1 ) ]
58
71
public class MemberInfoComparer : IComparer < MemberInfo > {
59
72
public static readonly MemberInfoComparer Default ; // = "Smdn.Reflection.ReverseGenerating.ListApi.MemberInfoComparer"
60
73
public static readonly MemberInfoComparer StaticMembersFirst ; // = "Smdn.Reflection.ReverseGenerating.ListApi.MemberInfoComparer"
61
74
62
75
public MemberInfoComparer ( int orderOfStaticMember , int orderOfInstanceMember ) { }
63
76
64
- public int Compare ( MemberInfo ? x , MemberInfo ? y ) { }
65
- public int GetOrder ( MemberInfo ? member ) { }
77
+ [ NullableContext ( 2 ) ]
78
+ public int Compare ( MemberInfo x , MemberInfo y ) { }
79
+ [ NullableContext ( 2 ) ]
80
+ public int GetOrder ( MemberInfo member ) { }
66
81
}
67
82
}
83
+
0 commit comments