Skip to content

Separating project into different assemblies #809

Separating project into different assemblies

Separating project into different assemblies #809

Triggered via pull request July 15, 2025 23:02
Status Failure
Total duration 3m 26s
Artifacts

codeql-analysis.yml

on: pull_request
Matrix: Analyze
Fit to window
Zoom out
Zoom in

Annotations

10 errors and 10 warnings
Analyze (csharp): src/MiniExcel.Legacy/obj/Debug/net10.0/generated/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.SyncMethodSourceGenerator/MiniExcelLibs.MiniExcel.InsertAsync_2.g.cs#L7
'MiniExcel.Insert(Stream, object, string, ExcelType, IConfiguration?, bool, bool)': not all code paths return a value
Analyze (csharp): src/MiniExcel.Legacy/obj/Debug/net10.0/generated/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.SyncMethodSourceGenerator/MiniExcelLibs.MiniExcel.InsertAsync.g.cs#L7
'MiniExcel.Insert(string, object, string, ExcelType, IConfiguration?, bool, bool)': not all code paths return a value
Analyze (csharp): src/MiniExcel.Legacy/obj/Debug/netstandard2.0/generated/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.SyncMethodSourceGenerator/MiniExcelLibs.MiniExcel.GetColumnsAsync_2.g.cs#L7
'MiniExcel.GetColumns(Stream, bool, string?, ExcelType, string, IConfiguration?)': not all code paths return a value
Analyze (csharp): src/MiniExcel.Legacy/obj/Debug/netstandard2.0/generated/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.SyncMethodSourceGenerator/MiniExcelLibs.MiniExcel.GetColumnsAsync.g.cs#L7
'MiniExcel.GetColumns(string, bool, string?, ExcelType, string, IConfiguration?)': not all code paths return a value
Analyze (csharp): src/MiniExcel.Legacy/obj/Debug/netstandard2.0/generated/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.SyncMethodSourceGenerator/MiniExcelLibs.MiniExcel.QueryAsDataTableAsync_2.g.cs#L10
'MiniExcel.QueryAsDataTable(Stream, bool, string?, ExcelType, string, IConfiguration?)': not all code paths return a value
Analyze (csharp): src/MiniExcel.Legacy/obj/Debug/netstandard2.0/generated/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.SyncMethodSourceGenerator/MiniExcelLibs.MiniExcel.QueryAsDataTableAsync.g.cs#L10
'MiniExcel.QueryAsDataTable(string, bool, string?, ExcelType, string, IConfiguration?)': not all code paths return a value
Analyze (csharp): src/MiniExcel.Legacy/obj/Debug/netstandard2.0/generated/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.SyncMethodSourceGenerator/MiniExcelLibs.MiniExcel.SaveAsAsync_2.g.cs#L7
'MiniExcel.SaveAs(Stream, object, bool, string, ExcelType, IConfiguration?)': not all code paths return a value
Analyze (csharp): src/MiniExcel.Legacy/obj/Debug/netstandard2.0/generated/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.SyncMethodSourceGenerator/MiniExcelLibs.MiniExcel.SaveAsAsync.g.cs#L7
'MiniExcel.SaveAs(string, object, bool, string, ExcelType, IConfiguration?, bool)': not all code paths return a value
Analyze (csharp): src/MiniExcel.Legacy/obj/Debug/netstandard2.0/generated/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.SyncMethodSourceGenerator/MiniExcelLibs.MiniExcel.InsertAsync_2.g.cs#L7
'MiniExcel.Insert(Stream, object, string, ExcelType, IConfiguration?, bool, bool)': not all code paths return a value
Analyze (csharp): src/MiniExcel.Legacy/obj/Debug/netstandard2.0/generated/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.SyncMethodSourceGenerator/MiniExcelLibs.MiniExcel.InsertAsync.g.cs#L7
'MiniExcel.Insert(string, object, string, ExcelType, IConfiguration?, bool, bool)': not all code paths return a value
Analyze (csharp): src/MiniExcel/Reflection/CustomPropertyHelper.cs#L48
Nullability of reference types in value of type 'List<MiniExcelColumnInfo?>' doesn't match target type 'List<MiniExcelColumnInfo>'.
Analyze (csharp): src/MiniExcel/Reflection/CustomPropertyHelper.cs#L48
Argument of type 'List<MiniExcelColumnInfo?>' cannot be used for parameter 'props' of type 'List<MiniExcelColumnInfo>' in 'List<MiniExcelColumnInfo?> CustomPropertyHelper.SortCustomProps(List<MiniExcelColumnInfo> props)' due to differences in the nullability of reference types.
Analyze (csharp): src/MiniExcel/Reflection/CustomPropertyHelper.cs#L42
Dereference of a possibly null reference.
Analyze (csharp): src/MiniExcel/WriteAdapters/AsyncEnumerableWriteAdapter.cs#L67
Possible null reference argument for parameter 'instance' in 'object? MiniExcelProperty.GetValue(object instance)'.
Analyze (csharp): src/MiniExcel/WriteAdapters/AsyncEnumerableWriteAdapter.cs#L23
Possible null reference argument for parameter 'value' in 'List<MiniExcelColumnInfo> CustomPropertyHelper.GetColumnInfoFromValue(object value, MiniExcelBaseConfiguration configuration)'.
Analyze (csharp): src/MiniExcel/WriteAdapters/EnumerableWriteAdapter.cs#L96
Possible null reference argument for parameter 'prop' in 'CellWriteInfo.CellWriteInfo(object? value, int cellIndex, MiniExcelColumnInfo prop)'.
Analyze (csharp): src/MiniExcel/Attributes/MiniExcelColumnAttribute.cs#L47
Non-nullable property 'CustomFormatter' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.
Analyze (csharp): src/MiniExcel/DataReader/MiniExcelDataReader.cs#L17
Non-nullable field '_keys' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the field as nullable.
Analyze (csharp): src/MiniExcel/DataReader/MiniExcelAsyncDataReader.cs#L19
Non-nullable field '_keys' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the field as nullable.
Analyze (csharp): src/MiniExcel/OpenXmlImporter.cs#L326
Async-iterator 'OpenXmlImporter.CastAsync(IAsyncEnumerable<dynamic>, CancellationToken)' has one or more parameters of type 'CancellationToken' but none of them is decorated with the 'EnumeratorCancellation' attribute, so the cancellation token parameter from the generated 'IAsyncEnumerable<>.GetAsyncEnumerator' will be unconsumed