Skip to content

Commit

Permalink
nuget package 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
FolkerKinzel committed Apr 5, 2021
1 parent b6f0d72 commit 072fa30
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Examples/Examples.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\FolkerKinzel.Contacts.IO\FolkerKinzel.Contacts.IO.csproj" />
<PackageReference Include="FolkerKinzel.Contacts.IO" Version="1.3.1" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions Examples/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ private static void Main()
Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;
Thread.CurrentThread.CurrentUICulture = CultureInfo.InvariantCulture;

CsvExample.ReadingAndWritingCsv();
//VCardExample.ReadingAndWritingVCard();
//CsvExample.ReadingAndWritingCsv();
VCardExample.ReadingAndWritingVCard();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
<PropertyGroup Condition="'$(TargetFramework)' == 'net45'">
<NoWarn>$(NoWarn);8600;8601;8602;8603;8604</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="reports\**" />
<EmbeddedResource Remove="reports\**" />
<None Remove="reports\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="CsvMappingCollectionTests.cs" />
</ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions FolkerKinzel.Contacts.IO/FolkerKinzel.Contacts.IO.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
<PackageId>FolkerKinzel.Contacts.IO</PackageId>
<Product>FolkerKinzel.Contacts.IO</Product>
<Version>1.3.1</Version>
<FileVersion>1.3.0.20</FileVersion>
<FileVersion>1.3.0.24</FileVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<PackageReleaseNotes>Updates the dependencies and makes use of the new features of FolkerKinzel.Contacts and FolkerKinzel.VCards.

Fixes an issue, that CsvWriter might crash if the TimeStamp of a Contact object is not explicitely set.
Fixes an issue, that CsvWriter might crash under certain circumstances if the TimeStamp of a Contact object is not explicitely set.

SaveVCard and LoadVCard have been replaced by SaveVcf and LoadVcf to have a more consistent naming. Existing code will still compile and run but will give you Obsolete warnings when using the old naming.

Passing an undefined enum value as VCardVersion will cause an ArgumentException.</PackageReleaseNotes>
Passing an undefined value of VCardVersion as method argument will cause an ArgumentException now.</PackageReleaseNotes>
<PackageTags>.net vcf csv vcard contact c#</PackageTags>
<Description>.NET-API to manage contact data of organizations and natural persons, including a data model and classes to persist it as vCard (*.vcf) or CSV.</Description>
<Authors>Folker Kinzel</Authors>
Expand Down

0 comments on commit 072fa30

Please sign in to comment.