-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
39 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<package | ||
><metadata><version>3.2.0</version><id>PeterO.Cbor</id><requireLicenseAcceptance>false</requireLicenseAcceptance><releaseNotes> | ||
|
||
Version 3.2 | ||
|
||
- Added build targeting the .NET Framework 2.0 | ||
- Obsoleted much of the existing API in CBOREncodeOptions and added new APIs to replace it. | ||
- Documentation for some CBORObject methods now points to the use of CBOREncodeOptions.Default | ||
- Documentation edited in other places | ||
|
||
</releaseNotes><summary></summary><licenseUrl>http://creativecommons.org/publicdomain/zero/1.0/</licenseUrl><projectUrl>https://github.com/peteroupc/CBOR</projectUrl><authors>Peter Occil</authors><description>A C# implementation of Concise Binary Object Representation (CBOR), a general-purpose binary data format defined in RFC 7049.</description><owners>Peter Occil</owners><title>CBOR (Concise Binary Object Representation)</title><tags>cbor data serialization binary json numbers arithmetic</tags><dependencies><group><dependency id='PeterO.Numbers' version='1.1.1' /></group></dependencies></metadata><files><file src='CBOR/bin/Release/netstandard1.0/CBOR.dll' target='/lib/netstandard1.0' /><file src='CBOR/bin/Release/netstandard1.0/CBOR.xml' target='/lib/netstandard1.0' /><file src='CBOR20/bin/Release/CBOR.dll' target='/lib/net20' /><file src='CBOR20/bin/Release/CBOR.xml' target='/lib/net20' /></files></package | ||
> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,10 @@ | ||
[assembly: System.CLSCompliant(true)] | ||
using System.Reflection; | ||
[assembly:System.CLSCompliant(true)] | ||
[assembly:AssemblyVersion("3.2.0")] | ||
[assembly:AssemblyFileVersion("3.2.0.0")] | ||
[assembly:AssemblyInformationalVersion("3.2.0.0")] | ||
[assembly:AssemblyProduct("CBOR (Concise Binary Object Representation)")] | ||
[assembly:AssemblyTitle("CBOR (Concise Binary Object Representation)")] | ||
[assembly:AssemblyDescription("A C# implementation of Concise Binary Object Representation (CBOR), a general-purpose binary data format defined in RFC 7049.")] | ||
[assembly:AssemblyCompany("Peter Occil")] | ||
[assembly:AssemblyCopyright("http://creativecommons.org/publicdomain/zero/1.0/")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,10 @@ | ||
/* | ||
Written by Peter O. in 2013. | ||
Any copyright is dedicated to the Public Domain. | ||
http://creativecommons.org/publicdomain/zero/1.0/ | ||
If you like this, you should donate to Peter O. | ||
at: http://peteroupc.github.io/ | ||
*/ | ||
#region Using directives | ||
using System; | ||
using System.Reflection; | ||
#endregion | ||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[assembly: AssemblyTitle("CBOR")] | ||
[assembly: AssemblyDescription( | ||
"A C# implementation of Concise Binary " + | ||
"Object Representation (CBOR).")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("Peter Occil")] | ||
[assembly: AssemblyProduct("CBOR")] | ||
[assembly: | ||
AssemblyCopyright( | ||
"Written by Peter O. in 2013-2017. Any copyright is " + | ||
"dedicated to the Public Domain. " + | ||
"<http://creativecommons.org/publicdomain/zero/1.0/>")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
[assembly: CLSCompliant(true)] | ||
// The assembly version has following format : | ||
// | ||
// Major.Minor.Build.Revision | ||
// | ||
// You can specify all the values or you can use the default the Revision and | ||
// Build Numbers by using the '*' as shown below: | ||
[assembly: AssemblyVersion("3.0.0")] | ||
[assembly:System.CLSCompliant(true)] | ||
[assembly:AssemblyVersion("3.2.0")] | ||
[assembly:AssemblyFileVersion("3.2.0.0")] | ||
[assembly:AssemblyInformationalVersion("3.2.0.0")] | ||
[assembly:AssemblyProduct("CBOR (Concise Binary Object Representation)")] | ||
[assembly:AssemblyTitle("CBOR (Concise Binary Object Representation)")] | ||
[assembly:AssemblyDescription("A C# implementation of Concise Binary Object Representation (CBOR), a general-purpose binary data format defined in RFC 7049.")] | ||
[assembly:AssemblyCompany("Peter Occil")] | ||
[assembly:AssemblyCopyright("http://creativecommons.org/publicdomain/zero/1.0/")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters