Skip to content

Commit

Permalink
Up CsvHelper version (#1045)
Browse files Browse the repository at this point in the history
  • Loading branch information
alrom authored Apr 14, 2023
1 parent 9111aef commit 2d47e10
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CsvHelper" Version="29.0.0" />
<PackageReference Include="CsvHelper" Version="30.0.1" />
<PackageReference Include="Google.Cloud.Storage.V1" Version="3.7.0" />
<PackageReference Include="H3Lib" Version="3.7.2" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" Version="6.0.6" />
Expand Down
2 changes: 1 addition & 1 deletion OutOfSchool/OutOfSchool.WebApi/OutOfSchool.WebApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CsvHelper" Version="29.0.0" />
<PackageReference Include="CsvHelper" Version="30.0.1" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.StackExchangeRedis" Version="6.0.9" />
<Protobuf Include="..\OutOfSchool.GRPC\Protos\ProviderAdmin.proto" GrpcServices="Client" />
<PackageReference Include="AutoMapper" Version="10.1.1" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public async Task CreateStatisticReports(CancellationToken cancellationToken = d

using (var stream = new MemoryStream())
{
using (var writer = new StreamWriter(stream))
using (var writer = new StreamWriter(stream, Encoding.UTF8))
using (var csv = new CsvWriter(writer, config))
{
await csv.WriteRecordsAsync(reportData, cancellationToken);
Expand Down

0 comments on commit 2d47e10

Please sign in to comment.