XSerializer
Advanced tools
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
@@ -1,1 +0,8 @@ | ||
| <?xml version="1.0" encoding="utf-8"?><Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml" /><Default Extension="nuspec" ContentType="application/octet" /><Default Extension="dll" ContentType="application/octet" /><Default Extension="xml" ContentType="application/octet" /><Default Extension="psmdcp" ContentType="application/vnd.openxmlformats-package.core-properties+xml" /></Types> | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"> | ||
| <Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml" /> | ||
| <Default Extension="psmdcp" ContentType="application/vnd.openxmlformats-package.core-properties+xml" /> | ||
| <Default Extension="dll" ContentType="application/octet" /> | ||
| <Default Extension="xml" ContentType="application/octet" /> | ||
| <Default Extension="nuspec" ContentType="application/octet" /> | ||
| </Types> |
+33
-22
| <?xml version="1.0" encoding="utf-8"?> | ||
| <package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
| <metadata> | ||
| <id>XSerializer</id> | ||
| <version>0.3.8</version> | ||
| <title>XSerializer - Serialize *anything*</title> | ||
| <authors>Brian Friesen</authors> | ||
| <owners>Brian Friesen</owners> | ||
| <licenseUrl>https://github.com/QuickenLoans/XSerializer/blob/master/LICENSE.md</licenseUrl> | ||
| <projectUrl>https://github.com/QuickenLoans/XSerializer</projectUrl> | ||
| <iconUrl>https://raw.githubusercontent.com/QuickenLoans/XSerializer/master/XSerializer/XSerializerLogo.png</iconUrl> | ||
| <requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
| <description>Encryption | ||
| XSerializer's XML and JSON serializers support the concept of field-level encryption. Properties that are decorated with an [Encrypt] attribute have their values encrypted/decrypted automatically. The actual mechanism to encrypt these fields is exposed through the IEncryptionMechanism interface - users of the encrypt feature are expected to implement this interface in their project. | ||
| XML | ||
| XSerializer's XML serialization handles properties and types that the System.Xml.Serialization.XmlSerializer does not handle, such as interfaces and dictionaries. It is meant to be a drop-in replacement for the BCL XmlSerializer - it uses the same attributes: [XmlElement], [XmlAttribute], etc. | ||
| JSON | ||
| JSON serialization in XSerializer has better performance than JSON.NET (Newtonsoft). It also has better support for deserialization into a variable or field of type dynamic.</description> | ||
| <summary>Advanced, high-performance XML and JSON serializers</summary> | ||
| <tags>xmlserializer xmlserialization xmlserialize serializer serialization serialize xml interface dynamic dictionary jsonserializer jsonserialization jsonserialize json encrypted encryption</tags> | ||
| </metadata> | ||
| <package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
| <metadata> | ||
| <id>XSerializer</id> | ||
| <version>0.4.0</version> | ||
| <title>XSerializer - Serialize *anything*</title> | ||
| <authors>Brian Friesen</authors> | ||
| <owners>Brian Friesen</owners> | ||
| <requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
| <licenseUrl>https://github.com/QuickenLoans/XSerializer/blob/master/LICENSE.md</licenseUrl> | ||
| <projectUrl>https://github.com/QuickenLoans/XSerializer</projectUrl> | ||
| <iconUrl>https://raw.githubusercontent.com/QuickenLoans/XSerializer/master/XSerializer/XSerializerLogo.png</iconUrl> | ||
| <description>XML | ||
| XSerializer's XML serialization handles properties and types that the System.Xml.Serialization.XmlSerializer does not handle, such as interfaces and dictionaries. It is meant to be a drop-in replacement for the BCL XmlSerializer - it uses the same attributes: [XmlElement], [XmlAttribute], etc. | ||
| JSON | ||
| JSON serialization in XSerializer has better performance than JSON.NET (Newtonsoft). It also has better support for deserialization into a variable or field of type dynamic. | ||
| Encryption | ||
| XSerializer's XML and JSON serializers support the concept of field-level encryption. Properties that are decorated with an [Encrypt] attribute have their values encrypted/decrypted automatically. The actual mechanism to encrypt these fields is exposed through the IEncryptionMechanism interface - users of the encrypt feature are expected to implement this interface in their project.</description> | ||
| <copyright>Copyright © Quicken Loans 2013-2018</copyright> | ||
| <tags>xmlserializer xmlserialization xmlserialize serializer serialization serialize xml interface dynamic dictionary jsonserializer jsonserialization jsonserialize json encrypted encryption</tags> | ||
| <repository type="git" url="https://github.com/QuickenLoans/XSerializer" /> | ||
| <dependencies> | ||
| <group targetFramework=".NETFramework4.0" /> | ||
| <group targetFramework=".NETStandard2.0"> | ||
| <dependency id="System.Xml.XmlSerializer" version="4.3.0" exclude="Build,Analyzers" /> | ||
| <dependency id="Microsoft.CSharp" version="4.4.0" exclude="Build,Analyzers" /> | ||
| </group> | ||
| </dependencies> | ||
| <frameworkAssemblies> | ||
| <frameworkAssembly assemblyName="Microsoft.CSharp" targetFramework=".NETFramework4.0" /> | ||
| </frameworkAssemblies> | ||
| </metadata> | ||
| </package> |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display