From 2d75cfe5012a3cc99c3992ecaa394f50f5cec07a Mon Sep 17 00:00:00 2001 From: Peter Occil Date: Fri, 20 Dec 2024 00:54:09 -0500 Subject: [PATCH] Edit project files; etc. --- CBOR/CBOR.csproj | 2 +- CBORDocs2/CBORDocs2.csproj | 2 +- CBORTest/CBORTest.csproj | 2 +- README.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CBOR/CBOR.csproj b/CBOR/CBOR.csproj index 21ad941e..e02c0fe9 100644 --- a/CBOR/CBOR.csproj +++ b/CBOR/CBOR.csproj @@ -55,7 +55,7 @@ Note that after version 4.5x, the CBOR library's repository will stop including rules.ruleset - + all diff --git a/CBORDocs2/CBORDocs2.csproj b/CBORDocs2/CBORDocs2.csproj index a51f15eb..14e72322 100644 --- a/CBORDocs2/CBORDocs2.csproj +++ b/CBORDocs2/CBORDocs2.csproj @@ -14,7 +14,7 @@ - + diff --git a/CBORTest/CBORTest.csproj b/CBORTest/CBORTest.csproj index a39ce0a2..dbbcb858 100644 --- a/CBORTest/CBORTest.csproj +++ b/CBORTest/CBORTest.csproj @@ -18,7 +18,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/README.md b/README.md index d317ae81..55d027b6 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ Here is an example. using (var stream = new MemoryStream(byteArray)) { // Read the CBOR object from the stream var cbor = CBORObject.Read(stream); - // The rest of the example follows the one given above. + // The rest of the example follows the one given earlier. } ```