Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: peteroupc/CBOR
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.5
Choose a base ref
...
head repository: peteroupc/CBOR
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 15,827 additions and 18,083 deletions.
  1. +230 −0 .editorconfig
  2. +1 −0 .gitattributes
  3. +3 −3 .github/workflows/Test.yml
  4. +9 −9 .github/workflows/codeql-analysis.yml
  5. +9 −3 CBOR.nuspec
  6. +9 −37 CBOR.sln
  7. +40 −19 CBOR/CBOR.csproj
  8. +8 −12 CBOR/PeterO/Cbor/Base64.cs
  9. +38 −38 CBOR/PeterO/Cbor/CBORCanonical.cs
  10. +100 −212 CBOR/PeterO/Cbor/CBORDataUtilities.cs
  11. +54 −69 CBOR/PeterO/Cbor/CBORDataUtilitiesByteArrayString.cs
  12. +54 −69 CBOR/PeterO/Cbor/CBORDataUtilitiesCharArrayString.cs
  13. +54 −69 CBOR/PeterO/Cbor/CBORDataUtilitiesTextString.cs
  14. +69 −85 CBOR/PeterO/Cbor/CBORDateConverter.cs
  15. +2 −3 CBOR/PeterO/Cbor/CBORDateConverterExtra.cs
  16. +19 −23 CBOR/PeterO/Cbor/CBORDoubleBits.cs
  17. +8 −12 CBOR/PeterO/Cbor/CBOREInteger.cs
  18. +30 −23 CBOR/PeterO/Cbor/CBOREncodeOptions.cs
  19. +6 −7 CBOR/PeterO/Cbor/CBORException.cs
  20. +10 −12 CBOR/PeterO/Cbor/CBORExtendedDecimal.cs
  21. +9 −11 CBOR/PeterO/Cbor/CBORExtendedFloat.cs
  22. +9 −11 CBOR/PeterO/Cbor/CBORExtendedRational.cs
  23. +7 −11 CBOR/PeterO/Cbor/CBORInteger.cs
  24. +87 −79 CBOR/PeterO/Cbor/CBORJson.cs
  25. +106 −116 CBOR/PeterO/Cbor/CBORJson2.cs
  26. +89 −93 CBOR/PeterO/Cbor/CBORJson3.cs
  27. +66 −60 CBOR/PeterO/Cbor/CBORJsonWriter.cs
  28. +269 −308 CBOR/PeterO/Cbor/CBORNumber.cs
  29. +37 −50 CBOR/PeterO/Cbor/CBORNumberExtra.cs
  30. +1,361 −1,793 CBOR/PeterO/Cbor/CBORObject.cs
  31. +125 −266 CBOR/PeterO/Cbor/CBORObjectExtra.cs
  32. +129 −118 CBOR/PeterO/Cbor/CBORReader.cs
  33. +13 −14 CBOR/PeterO/Cbor/CBORType.cs
  34. +33 −35 CBOR/PeterO/Cbor/CBORTypeMapper.cs
  35. +16 −21 CBOR/PeterO/Cbor/CBORUriConverter.cs
  36. +140 −169 CBOR/PeterO/Cbor/CBORUtilities.cs
  37. +15 −12 CBOR/PeterO/Cbor/CBORUuidConverter.cs
  38. +4 −7 CBOR/PeterO/Cbor/CharacterInputWithCount.cs
  39. +15 −16 CBOR/PeterO/Cbor/CharacterReader.cs
  40. +1 −3 CBOR/PeterO/Cbor/ICBORConverter.cs
  41. +150 −153 CBOR/PeterO/Cbor/ICBORNumber.cs
  42. +1 −3 CBOR/PeterO/Cbor/ICBORToFromConverter.cs
  43. +133 −181 CBOR/PeterO/Cbor/JSONOptions.cs
  44. +29 −38 CBOR/PeterO/Cbor/JSONPatch.cs
  45. +40 −47 CBOR/PeterO/Cbor/JSONPointer.cs
  46. +9 −11 CBOR/PeterO/Cbor/OptionsParser.cs
  47. +21 −20 CBOR/PeterO/Cbor/PODOptions.cs
  48. +270 −292 CBOR/PeterO/Cbor/PropertyMap.cs
  49. +7 −11 CBOR/PeterO/Cbor/SharedRefs.cs
  50. +29 −31 CBOR/PeterO/Cbor/StringOutput.cs
  51. +5 −8 CBOR/PeterO/Cbor/StringRefs.cs
  52. +0 −1,119 CBOR/PeterO/DataUtilities.cs
  53. +0 −83 CBOR/PeterO/DebugUtility.cs
  54. +901 −679 CBOR/docs.xml
  55. +18 −12 CBOR/rules.ruleset
  56. +0 −40 CBOR20/CBOR20.csproj
  57. +0 −15 CBOR20/Properties/AssemblyInfo.cs
  58. +0 −4 CBOR20/packages.config
  59. +0 −41 CBOR20/rules.ruleset
  60. +0 −1 CBOR20/stylecop.json
  61. +0 −45 CBOR40/CBOR40.csproj
  62. +0 −15 CBOR40/Properties/AssemblyInfo.cs
  63. +0 −4 CBOR40/packages.config
  64. +0 −41 CBOR40/rules.ruleset
  65. +0 −1 CBOR40/stylecop.json
  66. +0 −6 CBORDocs/App.config
  67. +0 −155 CBORDocs/CBORDocs.csproj
  68. +0 −972 CBORDocs/DocVisitor.cs
  69. +0 −34 CBORDocs/Properties/AssemblyInfo.cs
  70. +0 −10 CBORDocs/packages.config
  71. +0 −41 CBORDocs/rules.ruleset
  72. +0 −1 CBORDocs/stylecop.json
  73. +0 −6 CBORDocs2/App.config
  74. +11 −129 CBORDocs2/CBORDocs2.csproj
  75. +2 −2 {CBORDocs → CBORDocs2}/DocGenUtil.cs
  76. +12 −12 {CBORDocs → CBORDocs2}/DocGenerator.cs
  77. +912 −0 CBORDocs2/DocVisitor.cs
  78. +4 −2 {CBORDocs → CBORDocs2}/INode.cs
  79. +1 −1 {CBORDocs → CBORDocs2}/IVisitor.cs
  80. +25 −29 {CBORDocs → CBORDocs2}/MemberSummaryVisitor.cs
  81. +5 −5 CBORDocs2/Program.cs
  82. +0 −18 CBORDocs2/Properties/AssemblyInfo.cs
  83. +28 −26 {CBORDocs → CBORDocs2}/SummaryVisitor.cs
  84. +34 −33 {CBORDocs → CBORDocs2}/TestGenerator.cs
  85. +72 −65 {CBORDocs → CBORDocs2}/TypeNameUtil.cs
  86. +16 −17 {CBORDocs → CBORDocs2}/TypeVisitor.cs
  87. +53 −60 {CBORDocs → CBORDocs2}/XmlDoc.cs
  88. +1 −1 CBORDocs2/packages.config
  89. +18 −12 CBORDocs2/rules.ruleset
  90. +0 −3 CBORTest/AppResources.cs
  91. +58 −77 CBORTest/BEncoding.cs
  92. +22 −21 CBORTest/BEncodingTest.cs
  93. +8 −13 CBORTest/Base64.cs
  94. +55 −48 CBORTest/CBORDataUtilitiesTest.cs
  95. +1 −0 CBORTest/CBORExceptionTest.cs
  96. +1,635 −1,257 CBORTest/CBORExtraTest.cs
  97. +108 −62 CBORTest/CBORGenerator.cs
  98. +171 −96 CBORTest/CBORNumberTest.cs
  99. +2,908 −1,541 CBORTest/CBORObjectTest.cs
  100. +48 −39 CBORTest/CBORPlistWriter.cs
  101. +131 −125 CBORTest/CBORSupplementTest.cs
  102. +1,118 −1,039 CBORTest/CBORTest.cs
  103. +2 −3 CBORTest/CBORTest.csproj
  104. +90 −190 CBORTest/CBORTestCommon.cs
  105. +8 −6 CBORTest/CBORTypeMapperTest.cs
  106. +12 −10 CBORTest/CBORWriterHelper.cs
  107. +5 −4 CBORTest/CPOD.cs
  108. +5 −3 CBORTest/CPOD2.cs
  109. +13 −4 CBORTest/CPOD3.cs
  110. +0 −1,528 CBORTest/DataUtilitiesTest.cs
  111. +98 −98 CBORTest/DateTest.cs
  112. +141 −0 CBORTest/DelayingStream.cs
  113. +1 −4 CBORTest/FieldClass.cs
  114. +0 −2 CBORTest/IRandomGen.cs
  115. +0 −2 CBORTest/IRandomGenExtended.cs
  116. +104 −109 CBORTest/JSONGenerator.cs
  117. +89 −101 CBORTest/JSONWithComments.cs
  118. +36 −29 CBORTest/LimitedMemoryStream.cs
  119. +111 −101 CBORTest/MiniCBOR.cs
  120. +20 −10 CBORTest/PODClass.cs
  121. +71 −130 CBORTest/QueryStringHelper.cs
  122. +69 −0 CBORTest/QueryStringHelperCBOR.cs
  123. +75 −80 CBORTest/RandomGenerator.cs
  124. +219 −0 CBORTest/RandomNumerics.cs
  125. +112 −313 CBORTest/RandomObjects.cs
  126. +41 −45 CBORTest/Runner.cs
  127. +20 −40 CBORTest/StringAndBigInt.cs
  128. +33 −35 CBORTest/StringOutput.cs
  129. +129 −119 CBORTest/TestCommon.cs
  130. +290 −245 CBORTest/ToObjectTest.cs
  131. +11 −2 CBORTest/XorShift128Plus.cs
  132. +18 −13 CBORTest/rules.ruleset
  133. +0 −41 CBORTest20/CBORTest20.csproj
  134. +0 −2 CBORTest20/Properties/AssemblyInfo.cs
  135. +0 −5 CBORTest20/packages.config
  136. +0 −42 CBORTest20/rules.ruleset
  137. +0 −1 CBORTest20/stylecop.json
  138. +0 −48 CBORTest40/CBORTest40.csproj
  139. +0 −2 CBORTest40/Properties/AssemblyInfo.cs
  140. +0 −5 CBORTest40/packages.config
  141. +0 −42 CBORTest40/rules.ruleset
  142. +0 −1 CBORTest40/stylecop.json
  143. +39 −16 History.md
  144. +65 −0 Interop.md
  145. +7 −1 LICENSE.md
  146. +10 −15 README.md
  147. +11 −0 SECURITY.md
  148. +0 −2 docs/APIDocs.md
  149. +83 −140 docs/PeterO.Cbor.CBORDataUtilities.md
  150. +2 −1 docs/PeterO.Cbor.CBORDateConverter.ConversionType.md
  151. +39 −46 docs/PeterO.Cbor.CBORDateConverter.md
  152. +15 −15 docs/PeterO.Cbor.CBOREncodeOptions.md
  153. +10 −11 docs/PeterO.Cbor.CBORException.md
  154. +2 −1 docs/PeterO.Cbor.CBORNumber.NumberKind.md
  155. +22 −5 docs/PeterO.Cbor.CBORNumber.md
  156. +1,308 −1,584 docs/PeterO.Cbor.CBORObject.md
  157. +4 −3 docs/PeterO.Cbor.CBORType.md
  158. +6 −6 docs/PeterO.Cbor.CBORTypeMapper.md
  159. +2 −1 docs/PeterO.Cbor.JSONOptions.ConversionMode.md
  160. +1 −46 docs/PeterO.Cbor.JSONOptions.md
  161. +5 −5 docs/PeterO.Cbor.PODOptions.md
  162. +19 −19 docs/PeterO.DataUtilities.md
230 changes: 230 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,230 @@
# Remove the line below if you want to inherit .editorconfig settings from higher directories
root = true

# C# files
[*.cs]

#### Core EditorConfig Options ####

# Indentation and spacing
indent_size = 2
indent_style = space
tab_width = 2

# New line preferences
end_of_line = crlf
insert_final_newline = true

#### .NET Coding Conventions ####

# Organize usings
dotnet_separate_import_directive_groups = false
dotnet_sort_system_directives_first = false
file_header_template = unset

# this. and Me. preferences
dotnet_style_qualification_for_event = false
dotnet_style_qualification_for_field = false
dotnet_style_qualification_for_method = false
dotnet_style_qualification_for_property = false

# Language keywords vs BCL types preferences
dotnet_style_predefined_type_for_locals_parameters_members = true
dotnet_style_predefined_type_for_member_access = false

# Parentheses preferences
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity
dotnet_style_parentheses_in_other_operators = never_if_unnecessary
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity

# Modifier preferences
dotnet_style_require_accessibility_modifiers = for_non_interface_members

# Expression-level preferences
dotnet_style_coalesce_expression = true
dotnet_style_collection_initializer = true
dotnet_style_explicit_tuple_names = true
dotnet_style_namespace_match_folder = false
dotnet_style_null_propagation = true
dotnet_style_object_initializer = true
dotnet_style_operator_placement_when_wrapping = beginning_of_line
dotnet_style_prefer_auto_properties = true
dotnet_style_prefer_compound_assignment = true
dotnet_style_prefer_conditional_expression_over_assignment = true
dotnet_style_prefer_conditional_expression_over_return = true
dotnet_style_prefer_foreach_explicit_cast_in_source = when_strongly_typed
dotnet_style_prefer_inferred_anonymous_type_member_names = true
dotnet_style_prefer_inferred_tuple_names = true
dotnet_style_prefer_is_null_check_over_reference_equality_method = true
dotnet_style_prefer_simplified_boolean_expressions = true
dotnet_style_prefer_simplified_interpolation = true

# Field preferences
dotnet_style_readonly_field = true

# Parameter preferences
dotnet_code_quality_unused_parameters = all

# Suppression preferences
dotnet_remove_unnecessary_suppression_exclusions = none

# New line preferences
dotnet_style_allow_multiple_blank_lines_experimental = true
dotnet_style_allow_statement_immediately_after_block_experimental = true

#### C# Coding Conventions ####

dotnet_diagnostic.SA1210.severity = none

# "... where T : ..." rule disabled
dotnet_diagnostic.SA1127.severity = none

# var preferences
csharp_style_var_elsewhere = false
csharp_style_var_for_built_in_types = false
csharp_style_var_when_type_is_apparent = true

# Expression-bodied members
csharp_style_expression_bodied_accessors = true
csharp_style_expression_bodied_constructors = false
csharp_style_expression_bodied_indexers = true
csharp_style_expression_bodied_lambdas = true
csharp_style_expression_bodied_local_functions = false
csharp_style_expression_bodied_methods = false
csharp_style_expression_bodied_operators = false
csharp_style_expression_bodied_properties = true

# Pattern matching preferences
csharp_style_pattern_matching_over_as_with_null_check = true
csharp_style_pattern_matching_over_is_with_cast_check = true
csharp_style_prefer_extended_property_pattern = true
csharp_style_prefer_not_pattern = true
csharp_style_prefer_pattern_matching = true
csharp_style_prefer_switch_expression = true

# Null-checking preferences
csharp_style_conditional_delegate_call = true

# Modifier preferences
csharp_prefer_static_local_function = true
csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,required,volatile,async

# Code-block preferences
csharp_prefer_braces = true
csharp_prefer_simple_using_statement = true
csharp_style_namespace_declarations = block_scoped
csharp_style_prefer_method_group_conversion = true
csharp_style_prefer_top_level_statements = true

# Expression-level preferences
csharp_prefer_simple_default_expression = true
csharp_style_deconstructed_variable_declaration = true
csharp_style_implicit_object_creation_when_type_is_apparent = true
csharp_style_inlined_variable_declaration = true
csharp_style_prefer_index_operator = true
csharp_style_prefer_local_over_anonymous_function = true
csharp_style_prefer_null_check_over_type_check = true
csharp_style_prefer_range_operator = true
csharp_style_prefer_tuple_swap = true
csharp_style_prefer_utf8_string_literals = true
csharp_style_throw_expression = true
csharp_style_unused_value_assignment_preference = discard_variable
csharp_style_unused_value_expression_statement_preference = discard_variable

# 'using' directive preferences
csharp_using_directive_placement = outside_namespace

# New line preferences
csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true
csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true
csharp_style_allow_embedded_statements_on_same_line_experimental = true

#### C# Formatting Rules ####

# New line preferences
csharp_new_line_before_catch = false
csharp_new_line_before_else = false
csharp_new_line_before_finally = false
csharp_new_line_before_members_in_anonymous_types = true
csharp_new_line_before_members_in_object_initializers = false
csharp_new_line_before_open_brace = none
csharp_new_line_between_query_expression_clauses = false

# Indentation preferences
csharp_indent_block_contents = true
csharp_indent_braces = false
csharp_indent_case_contents = true
csharp_indent_case_contents_when_block = true
csharp_indent_labels = one_less_than_current
csharp_indent_switch_labels = true

# Space preferences
csharp_space_after_cast = false
csharp_space_after_colon_in_inheritance_clause = true
csharp_space_after_comma = true
csharp_space_after_dot = false
csharp_space_after_keywords_in_control_flow_statements = true
csharp_space_after_semicolon_in_for_statement = true
csharp_space_around_binary_operators = before_and_after
csharp_space_around_declaration_statements = false
csharp_space_before_colon_in_inheritance_clause = true
csharp_space_before_comma = false
csharp_space_before_dot = false
csharp_space_before_open_square_brackets = false
csharp_space_before_semicolon_in_for_statement = false
csharp_space_between_empty_square_brackets = false
csharp_space_between_method_call_empty_parameter_list_parentheses = false
csharp_space_between_method_call_name_and_opening_parenthesis = false
csharp_space_between_method_call_parameter_list_parentheses = false
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
csharp_space_between_method_declaration_name_and_open_parenthesis = false
csharp_space_between_method_declaration_parameter_list_parentheses = false
csharp_space_between_parentheses = false
csharp_space_between_square_brackets = false

# Wrapping preferences
csharp_preserve_single_line_blocks = true
csharp_preserve_single_line_statements = true

#### Naming styles ####

# Naming rules

dotnet_naming_rule.interface_should_be_begins_with_i.severity = suggestion
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i

dotnet_naming_rule.types_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case

dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case

# Symbol specifications

dotnet_naming_symbols.interface.applicable_kinds = interface
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.interface.required_modifiers =

dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.types.required_modifiers =

dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.non_field_members.required_modifiers =

# Naming styles

dotnet_naming_style.pascal_case.required_prefix =
dotnet_naming_style.pascal_case.required_suffix =
dotnet_naming_style.pascal_case.word_separator =
dotnet_naming_style.pascal_case.capitalization = pascal_case

dotnet_naming_style.begins_with_i.required_prefix = I
dotnet_naming_style.begins_with_i.required_suffix =
dotnet_naming_style.begins_with_i.word_separator =
dotnet_naming_style.begins_with_i.capitalization = pascal_case
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -25,6 +25,7 @@
*.less eol=lf
*.xml eol=lf
*.ruleset eol=lf
*.yml eol=lf
.gitattributes eol=lf
.gitignore eol=lf
.npmignore eol=lf
6 changes: 3 additions & 3 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
@@ -16,15 +16,15 @@ jobs:
with:
submodules: 'recursive'
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: '5.0'
dotnet-version: '9.0'
- name: Test
run: |
dotnet add CBORTest package Microsoft.NET.Test.Sdk # Update is required for GitHubActionsTestLogger to print anything
dotnet add CBORTest package GitHubActionsTestLogger
dotnet add CBORTest package NUnit3TestAdapter
dotnet test CBORTest -c Release
dotnet test CBORTest -c Release --blame-hang-timeout 10s
permissions:
contents: read
18 changes: 9 additions & 9 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -43,7 +43,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -52,14 +52,14 @@ jobs:
# queries: ./path/to/local/query, your-org/your-repo/queries@main

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: '5.0'
- run: |
dotnet add CBORTest package Microsoft.NET.Test.Sdk # Update is required for GitHubActionsTestLogger to print anything
dotnet add CBORTest package GitHubActionsTestLogger
dotnet add CBORTest package NUnit3TestAdapter
dotnet build CBORTest -c Release
dotnet-version: '9.0'
- name: Autobuild
uses: github/codeql-action/autobuild@v3

#- run: |
# dotnet clean; dotnet build CBORTest -c Release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v3
12 changes: 9 additions & 3 deletions CBOR.nuspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
<package
><metadata><version>4.5</version><id>PeterO.Cbor</id><requireLicenseAcceptance>false</requireLicenseAcceptance><releaseNotes>Version 4.5:
><metadata><version>5.0.0-alpha2</version><id>PeterO.Cbor</id><requireLicenseAcceptance>false</requireLicenseAcceptance><releaseNotes>Version 5.0:

- Alpha version
- Some deprecated features from earlier versions were obsoleted.
- Attempt to make the library trimmable by making use of reflection optional.

Version 4.5:

- Add support for JSON Pointers and JSON Patches
- Add option to keep map key order when decoding CBOR and JSON
- Add option to write JSON using only ASCII characters
- CBORObject.ToString renders strings as ASCII
- Add support for deserializing CBOR objects to IReadOnlyList, IReadOnlyCollection, and ReadOnlyDictionary

Note that after version 4.5x, the CBOR library&apos;s repository will stop including special projects for .NET 2.0 and .NET 4.0, leaving the .NET-Standard project for building the library.</releaseNotes><summary></summary><license type='expression'>CC0-1.0</license><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 8949.</description><owners>Peter Occil</owners><title>CBOR (Concise Binary Object Representation)</title><tags>cbor data serialization binary json</tags><dependencies><group targetFramework='.NETStandard1.0'><dependency id='PeterO.URIUtility' version='1.0.0' /><dependency id='PeterO.Numbers' version='1.8.2' /></group><group targetFramework='.NETFramework2.0'><dependency id='PeterO.URIUtility' version='1.0.0' /><dependency id='PeterO.Numbers' version='1.8.2' /></group><group targetFramework='.NETFramework4.0'><dependency id='PeterO.URIUtility' version='1.0.0' /><dependency id='PeterO.Numbers' version='1.8.2' /></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' /><file src='CBOR40/bin/Release/CBOR.dll' target='/lib/net40' /><file src='CBOR40/bin/Release/CBOR.xml' target='/lib/net40' /></files></package
>
Note that after version 4.5x, the CBOR library&apos;s repository will stop including special projects for .NET 2.0 and .NET 4.0, leaving the .NET-Standard project for building the library.</releaseNotes><summary></summary><license type='expression'>Unlicense</license><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 8949.</description><owners>Peter Occil</owners><title>CBOR (Concise Binary Object Representation)</title><tags>cbor data serialization binary json</tags><dependencies><group targetFramework='.NETStandard1.0'><dependency id='PolySharp' version='1.13.2' /><dependency id='PeterO.URIUtility' version='1.0.0' /><dependency id='PeterO.Numbers' version='1.8.2' /><dependency id='PeterO.DataUtilities' version='1.1.0' /></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' /></files></package
>
46 changes: 9 additions & 37 deletions CBOR.sln
Original file line number Diff line number Diff line change
@@ -1,22 +1,12 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
VisualStudioVersion = 14.0.23107.0
# Visual Studio Version 17
VisualStudioVersion = 17.5.33516.290
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CBORTest40", "CBORTest40\CBORTest40.csproj", "{857523E5-B17E-412E-B890-9DCDFCFB6266}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CBORDocs2", "CBORDocs2\CBORDocs2.csproj", "{B38659A7-A3DB-4CD1-8DFF-641B579E5092}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CBORTest20", "CBORTest20\CBORTest20.csproj", "{1A835385-8CA8-4552-BB37-049B9CAD2B3A}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CBOR", "CBOR\CBOR.csproj", "{44A061F7-B6A8-4FBD-993E-3746E8C42D6B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CBORDocs2", "CBORDocs2\CBORDocs2.csproj", "{B38659A7-A3DB-4CD1-8DFF-641B579E5092}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CBOR", "CBOR\CBOR.csproj", "{44A061F7-B6A8-4FBD-993E-3746E8C42D6B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CBORTest", "CBORTest\CBORTest.csproj", "{8FE63143-541E-448D-8337-A98D1FA51541}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CBORDocs", "CBORDocs\CBORDocs.csproj", "{B4719819-FE90-4A02-A71B-0169583B4752}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CBOR20", "CBOR20\CBOR20.csproj", "{C53FD486-9486-43EA-9257-FDD713F57050}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CBOR40", "CBOR40\CBOR40.csproj", "{F25D228F-FE3D-4BE8-8AEB-DCA3700DFED5}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CBORTest", "CBORTest\CBORTest.csproj", "{8FE63143-541E-448D-8337-A98D1FA51541}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -36,30 +26,12 @@ Global
{8FE63143-541E-448D-8337-A98D1FA51541}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8FE63143-541E-448D-8337-A98D1FA51541}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8FE63143-541E-448D-8337-A98D1FA51541}.Release|Any CPU.Build.0 = Release|Any CPU
{B4719819-FE90-4A02-A71B-0169583B4752}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B4719819-FE90-4A02-A71B-0169583B4752}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B4719819-FE90-4A02-A71B-0169583B4752}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B4719819-FE90-4A02-A71B-0169583B4752}.Release|Any CPU.Build.0 = Release|Any CPU
{C53FD486-9486-43EA-9257-FDD713F57050}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C53FD486-9486-43EA-9257-FDD713F57050}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C53FD486-9486-43EA-9257-FDD713F57050}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C53FD486-9486-43EA-9257-FDD713F57050}.Release|Any CPU.Build.0 = Release|Any CPU
{C53FD486-9486-43EA-9257-FDD713F57050}.ReleaseNet40|Any CPU.ActiveCfg = Debug|Any CPU
{C53FD486-9486-43EA-9257-FDD713F57050}.ReleaseNet40|Any CPU.Build.0 = Debug|Any CPU
{F25D228F-FE3D-4BE8-8AEB-DCA3700DFED5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F25D228F-FE3D-4BE8-8AEB-DCA3700DFED5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F25D228F-FE3D-4BE8-8AEB-DCA3700DFED5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F25D228F-FE3D-4BE8-8AEB-DCA3700DFED5}.Release|Any CPU.Build.0 = Release|Any CPU
{857523E5-B17E-412E-B890-9DCDFCFB6266}.Release|Any CPU.ActiveCfg = Debug|Any CPU
{857523E5-B17E-412E-B890-9DCDFCFB6266}.Release|Any CPU.Build.0 = Debug|Any CPU
{857523E5-B17E-412E-B890-9DCDFCFB6266}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{857523E5-B17E-412E-B890-9DCDFCFB6266}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1A835385-8CA8-4552-BB37-049B9CAD2B3A}.Release|Any CPU.ActiveCfg = Debug|Any CPU
{1A835385-8CA8-4552-BB37-049B9CAD2B3A}.Release|Any CPU.Build.0 = Debug|Any CPU
{1A835385-8CA8-4552-BB37-049B9CAD2B3A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1A835385-8CA8-4552-BB37-049B9CAD2B3A}.Debug|Any CPU.Build.0 = Debug|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {FDBC18D9-2C43-41BF-A01B-7F87F9C1AEA2}
SolutionGuid = {AE3EA107-473B-4E31-B14D-F901FE8F17B1}
EndGlobalSection
EndGlobal
Loading