Skip to content

Commit

Permalink
Merge branch 'release/0.0.3' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
fstueber committed Mar 26, 2021
2 parents a6cf162 + f49e8fa commit 95beec5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/Ecf.Excel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

<ItemGroup>
<PackageReference Include="ClosedXML" Version="0.95.4" />
<PackageReference Include="Enbrea.Csv" Version="0.1.0" />
<PackageReference Include="Enbrea.Ecf" Version="0.1.1" />
<PackageReference Include="Enbrea.Csv" Version="0.1.2" />
<PackageReference Include="Enbrea.Ecf" Version="0.1.8" />
<PackageReference Include="Enbrea.GuidFactory" Version="0.1.1" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.20574.7" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Export/ExportStudent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace Ecf.Excel
{
public class ExportStudent
{
public readonly DateTime? BirthDate = null;
public readonly Date? BirthDate = null;
public readonly string FirstName = null;
public readonly EcfGender? Gender = null;
public readonly string Id;
Expand Down
8 changes: 8 additions & 0 deletions test/xunit/Assets/test.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@
"FromHeader": "E",
"ToHeader": "Klasse"
},
{
"FromHeader": "F",
"ToHeader": "Geburtstag"
},
{
"FromHeader": "G",
"ToHeader": "Fach1"
Expand All @@ -67,6 +71,10 @@
"FromHeader": "KLASSE",
"ToHeader": "Klasse"
},
{
"FromHeader": "GEB",
"ToHeader": "Geburtstag"
},
{
"FromHeader": "F1",
"ToHeader": "Fach1"
Expand Down
4 changes: 2 additions & 2 deletions test/xunit/Ecf.Excel.XUnit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.0.1">
<PackageReference Include="coverlet.collector" Version="3.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit 95beec5

Please sign in to comment.