forked from jstedfast/MimeKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MimeKit.nuspec
51 lines (48 loc) · 4.17 KB
/
MimeKit.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>MimeKit</id>
<version>0.14.0.0</version>
<title>MimeKit: A complete MIME library with support for S/MIME and PGP</title>
<authors>Jeffrey Stedfast</authors>
<owners>Jeffrey Stedfast</owners>
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
<projectUrl>http://github.com/jstedfast/MimeKit</projectUrl>
<iconUrl>https://nuget.org/Content/Images/packageDefaultIcon-50x50.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>MimeKit is an Open Source library for creating and parsing MIME, S/MIME and PGP messages on desktop and mobile platforms. It also supports parsing of Unix mbox files.
Unlike any other .NET MIME parser, MimeKit's parser does not need to parse string input nor does it use a TextReader. Instead, it parses raw byte streams, thus allowing it to better support undeclared 8bit text in headers as well as message bodies. It also means that MimeKit's parser is significantly faster than other .NET MIME parsers.
MimeKit's parser also uses a real tokenizer when parsing the headers rather than regex or string.Split() like most other .NET MIME parsers. This means that MimeKit is much more RFC-compliant than any other .NET MIME parser out there, including the commercial implementations.
In addition to having a far superior parser implementation, MimeKit's object tree is not a derivative of System.Net.Mail objects and thus does not suffer from System.Net.Mail's massive limitations or bugs.</description>
<summary>An Open Source library for creating and parsing MIME, S/MIME and PGP messages on desktop and mobile platforms.</summary>
<releaseNotes>* Added S/MIME and PGP support to the iOS and Android platforms.
* Added an explicit cast operator to MimeMessage for casting to a System.Net.Mail.MailMessage.
* Improved MultipartSignd.Verify() and ApplicationPkcs7Mime.Verify() APIs.
* Fixed parsing of Content-Type media types that contained periods.
* Fixed a bug in the rfc2047 decoder.</releaseNotes>
<copyright>Jeffrey Stedfast</copyright>
<language>en-US</language>
<tags>mime security smime openpgp pgp mbox email parser xamarin android ios</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" targetFramework=".NETFramework4.0" />
<frameworkAssembly assemblyName="System.Core" targetFramework=".NETFramework4.0" />
<frameworkAssembly assemblyName="System.Security" targetFramework=".NETFramework4.0" />
<frameworkAssembly assemblyName="System" targetFramework="MonoAndroid0.0" />
<frameworkAssembly assemblyName="System.Core" targetFramework="MonoAndroid0.0" />
<frameworkAssembly assemblyName="System" targetFramework="MonoTouch0.0" />
<frameworkAssembly assemblyName="System.Core" targetFramework="MonoTouch0.0" />
</frameworkAssemblies>
</metadata>
<files>
<file src="MimeKit\bin\Release\lib\MonoAndroid\BouncyCastle.Android.dll" target="lib\MonoAndroid\BouncyCastle.Android.dll" />
<file src="MimeKit\bin\Release\lib\MonoAndroid\MimeKit.Android.dll" target="lib\MonoAndroid\MimeKit.Android.dll" />
<file src="MimeKit\bin\Release\lib\MonoAndroid\MimeKit.Android.xml" target="lib\MonoAndroid\MimeKit.Android.xml" />
<file src="MimeKit\bin\Release\lib\MonoTouch\BouncyCastle.iOS.dll" target="lib\MonoTouch\BouncyCastle.iOS.dll" />
<file src="MimeKit\bin\Release\lib\MonoTouch\MimeKit.iOS.dll" target="lib\MonoTouch\MimeKit.iOS.dll" />
<file src="MimeKit\bin\Release\lib\MonoTouch\MimeKit.iOS.xml" target="lib\MonoTouch\MimeKit.iOS.xml" />
<file src="MimeKit\bin\Release\lib\net40\BouncyCastle.dll" target="lib\net40\BouncyCastle.dll" />
<file src="MimeKit\bin\Release\lib\net40\BouncyCastle.xml" target="lib\net40\BouncyCastle.xml" />
<file src="MimeKit\bin\Release\lib\net40\MimeKit.dll" target="lib\net40\MimeKit.dll" />
<file src="MimeKit\bin\Release\lib\net40\MimeKit.xml" target="lib\net40\MimeKit.xml" />
</files>
</package>