Skip to content

Separating project into different assemblies #804

Separating project into different assemblies

Separating project into different assemblies #804

Triggered via pull request July 9, 2025 20:11
Status Success
Total duration 1m 25s
Artifacts

dotnet.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

10 warnings
build: src/MiniExcel/Reflection/MiniExcelMapper.cs#L47
Dereference of a possibly null reference.
build: src/MiniExcel/Reflection/MiniExcelMapper.cs#L30
Nullability of reference types in value of type 'List<MiniExcelColumnInfo?>' doesn't match target type 'List<MiniExcelColumnInfo>'.
build: src/MiniExcel/MiniExcelImporter.cs#L163
Possible null reference argument for parameter 'value' in 'void Dictionary<string, string>.Add(string key, string value)'.
build: src/MiniExcel/WriteAdapters/AsyncEnumerableWriteAdapter.cs#L67
Possible null reference argument for parameter 'instance' in 'object? MiniExcelProperty.GetValue(object instance)'.
build: src/MiniExcel/WriteAdapters/AsyncEnumerableWriteAdapter.cs#L23
Possible null reference argument for parameter 'value' in 'List<MiniExcelColumnInfo> CustomPropertyHelper.GetColumnInfoFromValue(object value, MiniExcelBaseConfiguration configuration)'.
build: src/MiniExcel/WriteAdapters/EnumerableWriteAdapter.cs#L96
Possible null reference argument for parameter 'prop' in 'CellWriteInfo.CellWriteInfo(object? value, int cellIndex, MiniExcelColumnInfo prop)'.
build: 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.
build: 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.
build: 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.
build: src/MiniExcel/MiniExcelImporter.cs#L324
Async-iterator 'MiniExcelImporter.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