diff --git a/Examples/Examples.csproj b/Examples/Examples.csproj index ef21815..9149c6c 100644 --- a/Examples/Examples.csproj +++ b/Examples/Examples.csproj @@ -8,7 +8,7 @@ - + diff --git a/Examples/Program.cs b/Examples/Program.cs index 278499b..74d0893 100644 --- a/Examples/Program.cs +++ b/Examples/Program.cs @@ -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(); } } } diff --git a/FolkerKinzel.Contacts.IO.Tests/FolkerKinzel.Contacts.IO.Tests.csproj b/FolkerKinzel.Contacts.IO.Tests/FolkerKinzel.Contacts.IO.Tests.csproj index 3b5e06f..987915b 100644 --- a/FolkerKinzel.Contacts.IO.Tests/FolkerKinzel.Contacts.IO.Tests.csproj +++ b/FolkerKinzel.Contacts.IO.Tests/FolkerKinzel.Contacts.IO.Tests.csproj @@ -13,6 +13,11 @@ $(NoWarn);8600;8601;8602;8603;8604 + + + + + diff --git a/FolkerKinzel.Contacts.IO/FolkerKinzel.Contacts.IO.csproj b/FolkerKinzel.Contacts.IO/FolkerKinzel.Contacts.IO.csproj index e30ebde..8625724 100644 --- a/FolkerKinzel.Contacts.IO/FolkerKinzel.Contacts.IO.csproj +++ b/FolkerKinzel.Contacts.IO/FolkerKinzel.Contacts.IO.csproj @@ -8,15 +8,15 @@ FolkerKinzel.Contacts.IO FolkerKinzel.Contacts.IO 1.3.1 - 1.3.0.20 + 1.3.0.24 1.0.0.0 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. +Passing an undefined value of VCardVersion as method argument will cause an ArgumentException now. .net vcf csv vcard contact c# .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. Folker Kinzel