We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Other libraries allow you to do something like this...
var phoneFax = new vCard.vTelephone(); phoneFax.Location = vCard.vLocations.WORK; phoneFax.Type = vCard.vPhoneTypes.FAX; phoneFax.TelephoneNumber = contact.FaxNumber; vc.Telephones.Add(phoneFax);
Producing output like TEL;WORK;FAX:555-555-5555
This library doesn't allow for that without doing something custom...
The text was updated successfully, but these errors were encountered:
This library seems unmaintained, but I've found another (unmaintained) fork that attempts to fix this: https://github.com/hali4831/MixERP.Net.VCards
Sorry, something went wrong.
Workaround: Use an actively maintained library like https://github.com/FolkerKinzel/VCards that doesn't suffer from the telephone types issue
(It's surprising that MixERP.Net.VCards is the most popular result on NuGet, when there are better alternatives)
MixERP.Net.VCards
No branches or pull requests
Other libraries allow you to do something like this...
Producing output like TEL;WORK;FAX:555-555-5555
This library doesn't allow for that without doing something custom...
The text was updated successfully, but these errors were encountered: