From b8c0fc679cb116d199d8e5080e8fcdcb6dd72d08 Mon Sep 17 00:00:00 2001 From: nfbot Date: Tue, 16 Jun 2020 15:22:23 +0000 Subject: [PATCH 01/76] Set version to '1.1.1-preview.{height}' --- source/version.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/version.json b/source/version.json index c90b145..3950df0 100644 --- a/source/version.json +++ b/source/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "1.1.0-preview.{height}", + "version": "1.1.1-preview.{height}", "assemblyVersion": { "precision": "revision" }, @@ -18,7 +18,7 @@ }, "release": { "branchName": "release-v{version}", - "firstUnstableTag": "preview", - "versionIncrement": "build" + "versionIncrement": "build", + "firstUnstableTag": "preview" } } \ No newline at end of file From ba5e89ac4bab37caf4346218ce1a64c0e1ae99f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Thu, 2 Jul 2020 09:41:38 +0100 Subject: [PATCH 02/76] Work CD-CI - Add github action to update dependencies. ***NO_CI*** --- .github/workflows/update-dependencies.yml | 50 +++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/workflows/update-dependencies.yml diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml new file mode 100644 index 0000000..5852f68 --- /dev/null +++ b/.github/workflows/update-dependencies.yml @@ -0,0 +1,50 @@ +# Copyright (c) 2020 The nanoFramework project contributors +# See LICENSE file in the project root for full license information. + +# This workflow will periodically check .NET nanoFramework dependencies and updates them in the repository it's running. + +name: Daily update dependencies + +on: + schedule: + # At 00:00 UTC every day. + - cron: '00 00 * * *' + repository_dispatch: + types: update-dependencies + +defaults: + run: + shell: pwsh + +jobs: + update-dotnet-preview: + name: Update .NET nanoFramework dependencies + timeout-minutes: 15 + runs-on: windows-latest + steps: + - name: Checkout + uses: actions/checkout@v2.3.1 + with: + path: main + - name: Checkout tools repo + uses: actions/checkout@v2.3.1 + with: + repository: nanoframework/nf-tools + path: tools + - name: Update dependencies + run: ./github-actions/update-nf-dependencies.ps1 + working-directory: tools + - name: Create Pull Request + uses: peter-evans/create-pull-request@v2.8.1 + if: env.CREATE_PR == 'true' + with: + title: '${{ env.PR_TITLE }}' + body: | + ${{ env.PR_MESSAGE }} + + [version update] + + ### :warning: This is an automated update. :warning: + committer: 'nfbot ' + branch: ${{ env.BRANCH_NAME }} + path: main From de8a3482dcec5674714c9dc6e22c1d9916d826b9 Mon Sep 17 00:00:00 2001 From: josesimoes Date: Tue, 28 Jul 2020 15:36:41 +0100 Subject: [PATCH 03/76] Work CD-CI - Move solution and source files to repo root. ***NO_CI*** --- source/NuGet.Config => NuGet.Config | 0 azure-pipelines.yml | 2 +- ....Text.nuspec => nanoFramework.System.Text.nuspec | 0 ...System.Text.sln => nanoFramework.System.Text.sln | 0 .../Properties/AssemblyInfo.cs | 0 .../Text/Decoder.cs | 0 .../Text/Encoding.cs | 0 .../Text/StringBuilder.cs | 0 .../Text/UTF8Decoder.cs | 0 .../Text/UTF8Encoding.cs | 0 .../key.snk | Bin .../nanoFramework.System.Text.nfproj | 0 .../packages.config | 0 source/readme.txt => readme.txt | 0 source/version.json => version.json | 0 15 files changed, 1 insertion(+), 1 deletion(-) rename source/NuGet.Config => NuGet.Config (100%) rename source/nanoFramework.System.Text.nuspec => nanoFramework.System.Text.nuspec (100%) rename source/nanoFramework.System.Text.sln => nanoFramework.System.Text.sln (100%) rename {source/nanoFramework.System.Text => nanoFramework.System.Text}/Properties/AssemblyInfo.cs (100%) rename {source/nanoFramework.System.Text => nanoFramework.System.Text}/Text/Decoder.cs (100%) rename {source/nanoFramework.System.Text => nanoFramework.System.Text}/Text/Encoding.cs (100%) rename {source/nanoFramework.System.Text => nanoFramework.System.Text}/Text/StringBuilder.cs (100%) rename {source/nanoFramework.System.Text => nanoFramework.System.Text}/Text/UTF8Decoder.cs (100%) rename {source/nanoFramework.System.Text => nanoFramework.System.Text}/Text/UTF8Encoding.cs (100%) rename {source/nanoFramework.System.Text => nanoFramework.System.Text}/key.snk (100%) rename {source/nanoFramework.System.Text => nanoFramework.System.Text}/nanoFramework.System.Text.nfproj (100%) rename {source/nanoFramework.System.Text => nanoFramework.System.Text}/packages.config (100%) rename source/readme.txt => readme.txt (100%) rename source/version.json => version.json (100%) diff --git a/source/NuGet.Config b/NuGet.Config similarity index 100% rename from source/NuGet.Config rename to NuGet.Config diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 78c6993..5a755bc 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -26,7 +26,7 @@ jobs: variables: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true - solution: '**/source/*.sln' + solution: '**/*.sln' buildPlatform: 'Any CPU' buildConfiguration: 'Release' nugetPackageName: 'nanoFramework.System.Text' diff --git a/source/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec similarity index 100% rename from source/nanoFramework.System.Text.nuspec rename to nanoFramework.System.Text.nuspec diff --git a/source/nanoFramework.System.Text.sln b/nanoFramework.System.Text.sln similarity index 100% rename from source/nanoFramework.System.Text.sln rename to nanoFramework.System.Text.sln diff --git a/source/nanoFramework.System.Text/Properties/AssemblyInfo.cs b/nanoFramework.System.Text/Properties/AssemblyInfo.cs similarity index 100% rename from source/nanoFramework.System.Text/Properties/AssemblyInfo.cs rename to nanoFramework.System.Text/Properties/AssemblyInfo.cs diff --git a/source/nanoFramework.System.Text/Text/Decoder.cs b/nanoFramework.System.Text/Text/Decoder.cs similarity index 100% rename from source/nanoFramework.System.Text/Text/Decoder.cs rename to nanoFramework.System.Text/Text/Decoder.cs diff --git a/source/nanoFramework.System.Text/Text/Encoding.cs b/nanoFramework.System.Text/Text/Encoding.cs similarity index 100% rename from source/nanoFramework.System.Text/Text/Encoding.cs rename to nanoFramework.System.Text/Text/Encoding.cs diff --git a/source/nanoFramework.System.Text/Text/StringBuilder.cs b/nanoFramework.System.Text/Text/StringBuilder.cs similarity index 100% rename from source/nanoFramework.System.Text/Text/StringBuilder.cs rename to nanoFramework.System.Text/Text/StringBuilder.cs diff --git a/source/nanoFramework.System.Text/Text/UTF8Decoder.cs b/nanoFramework.System.Text/Text/UTF8Decoder.cs similarity index 100% rename from source/nanoFramework.System.Text/Text/UTF8Decoder.cs rename to nanoFramework.System.Text/Text/UTF8Decoder.cs diff --git a/source/nanoFramework.System.Text/Text/UTF8Encoding.cs b/nanoFramework.System.Text/Text/UTF8Encoding.cs similarity index 100% rename from source/nanoFramework.System.Text/Text/UTF8Encoding.cs rename to nanoFramework.System.Text/Text/UTF8Encoding.cs diff --git a/source/nanoFramework.System.Text/key.snk b/nanoFramework.System.Text/key.snk similarity index 100% rename from source/nanoFramework.System.Text/key.snk rename to nanoFramework.System.Text/key.snk diff --git a/source/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj similarity index 100% rename from source/nanoFramework.System.Text/nanoFramework.System.Text.nfproj rename to nanoFramework.System.Text/nanoFramework.System.Text.nfproj diff --git a/source/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config similarity index 100% rename from source/nanoFramework.System.Text/packages.config rename to nanoFramework.System.Text/packages.config diff --git a/source/readme.txt b/readme.txt similarity index 100% rename from source/readme.txt rename to readme.txt diff --git a/source/version.json b/version.json similarity index 100% rename from source/version.json rename to version.json From 4ae674b70799ce3aadaf660075cb8546f1356eba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 19 Sep 2020 01:23:17 +0100 Subject: [PATCH 04/76] Update dependencies --- nanoFramework.System.Text.nuspec | 2 +- .../nanoFramework.System.Text.nfproj | 8 ++++---- nanoFramework.System.Text/packages.config | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index 2f1e652..bbc6820 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -20,7 +20,7 @@ This package requires a target with nanoFramework.System.Text v$nativeVersion$.< System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index eeac3f6..745f79b 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -39,7 +39,7 @@ - + false @@ -57,8 +57,8 @@ - - ..\packages\nanoFramework.CoreLibrary.1.7.3\lib\mscorlib.dll + + ..\packages\nanoFramework.CoreLibrary.1.8.0-preview.6\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index fde0308..7c10502 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From b355b96dd729758379ec46096877129d29f79d9b Mon Sep 17 00:00:00 2001 From: nfbot Date: Sat, 19 Sep 2020 00:27:44 +0000 Subject: [PATCH 05/76] Update CHANGELOG for v1.1.1 ***NO_CI*** --- CHANGELOG.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88e455f..b2beec9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,31 @@ ## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/HEAD) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0-preview.22...HEAD) +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.0...HEAD) + +**Documentation and other chores:** + +- Update dependencies [\#13](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/13) + +## [v1.1.0](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.0) (2020-06-16) + +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0...v1.1.0) + +**Documentation and other chores:** + +- Release release-v1.1.0 [\#12](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/12) + +## [v1.0.0](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.0.0) (2020-06-12) + +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0-preview.25...v1.0.0) + +**Documentation and other chores:** + +- Release release-v1.0.0 [\#11](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/11) + +## [v1.0.0-preview.25](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.0.0-preview.25) (2020-06-11) + +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0-preview.22...v1.0.0-preview.25) **Documentation and other chores:** From f3d0f83f9140f1657b27027149052b41c8a96de5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Thu, 24 Sep 2020 01:00:33 +0100 Subject: [PATCH 06/76] Update and rename LICENSE to LICENSE.md ***NO_CI*** --- LICENSE | 201 ----------------------------------------------------- LICENSE.md | 21 ++++++ 2 files changed, 21 insertions(+), 201 deletions(-) delete mode 100644 LICENSE create mode 100644 LICENSE.md diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 8dada3e..0000000 --- a/LICENSE +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..94286c9 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) .NET Foundation and Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. From f40d49edf69319c616a6ff5e9eaa9ce8a4fabf21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Thu, 24 Sep 2020 01:22:25 +0100 Subject: [PATCH 07/76] Rename LICENSE.md to LICENSE ***NO_CI*** --- LICENSE.md => LICENSE | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename LICENSE.md => LICENSE (100%) diff --git a/LICENSE.md b/LICENSE similarity index 100% rename from LICENSE.md rename to LICENSE From b5da28f44addf67b69679784f0266f5b25382d44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Thu, 24 Sep 2020 01:22:50 +0100 Subject: [PATCH 08/76] Update README.md ***NO_CI*** --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c809e59..90128a8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_lib-nanoFramework.System.Text&metric=alert_status)](https://sonarcloud.io/dashboard?id=nanoframework_lib-nanoFramework.System.Text) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_lib-nanoFramework.System.Text&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=nanoframework_lib-nanoFramework.System.Text) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/nanoframework/Home/blob/master/LICENSE) [![NuGet](https://img.shields.io/nuget/dt/nanoFramework.nanoFramework.System.Text.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.Text/) [![#yourfirstpr](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://github.com/nanoframework/Home/blob/master/CONTRIBUTING.md) +[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_lib-nanoFramework.System.Text&metric=alert_status)](https://sonarcloud.io/dashboard?id=nanoframework_lib-nanoFramework.System.Text) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_lib-nanoFramework.System.Text&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=nanoframework_lib-nanoFramework.System.Text) [![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) [![NuGet](https://img.shields.io/nuget/dt/nanoFramework.nanoFramework.System.Text.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.Text/) [![#yourfirstpr](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://github.com/nanoframework/Home/blob/master/CONTRIBUTING.md) [![Discord](https://img.shields.io/discord/478725473862549535.svg?logo=discord&logoColor=white&label=Discord&color=7289DA)](https://discord.gg/gCyBu8T) ![nanoFramework logo](https://github.com/nanoframework/Home/blob/master/resources/logo/nanoFramework-repo-logo.png) @@ -26,7 +26,7 @@ The list of contributors to this project can be found at [CONTRIBUTORS](https:// ## License -The **nanoFramework** Class Libraries are licensed under the [Apache 2.0 license](http://www.apache.org/licenses/LICENSE-2.0). +The **nanoFramework** Class Libraries are licensed under the [MIT license](LICENSE.md). ## Code of Conduct From 36692e5155f60a9077d5175c5ab4c369c41d6101 Mon Sep 17 00:00:00 2001 From: josesimoes Date: Fri, 25 Sep 2020 14:30:26 +0100 Subject: [PATCH 09/76] Update copyright headers ***NO_CI*** --- .github/workflows/update-dependencies.yml | 2 +- nanoFramework.System.Text.nuspec | 2 +- nanoFramework.System.Text/Properties/AssemblyInfo.cs | 2 +- nanoFramework.System.Text/Text/Decoder.cs | 2 +- nanoFramework.System.Text/Text/Encoding.cs | 2 +- nanoFramework.System.Text/Text/StringBuilder.cs | 2 +- nanoFramework.System.Text/Text/UTF8Decoder.cs | 2 +- nanoFramework.System.Text/Text/UTF8Encoding.cs | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 5852f68..a2c2cf3 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2020 The nanoFramework project contributors +# Copyright (c) .NET Foundation and Contributors # See LICENSE file in the project root for full license information. # This workflow will periodically check .NET nanoFramework dependencies and updates them in the repository it's running. diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index bbc6820..40dd859 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -14,7 +14,7 @@ https://github.com/nanoframework/lib-nanoFramework.System.Text https://secure.gravatar.com/avatar/97d0e092247f0716db6d4b47b7d1d1ad - Copyright (c) 2018 The nanoFramework project contributors + Copyright (c) .NET Foundation and Contributors This package includes the System.Text assembly for nanoFramework C# projects. This package requires a target with nanoFramework.System.Text v$nativeVersion$. System.Text assembly for nanoFramework C# projects diff --git a/nanoFramework.System.Text/Properties/AssemblyInfo.cs b/nanoFramework.System.Text/Properties/AssemblyInfo.cs index 1ea7f7f..1419cf4 100644 --- a/nanoFramework.System.Text/Properties/AssemblyInfo.cs +++ b/nanoFramework.System.Text/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyTitle("nanoFramework.System.Text")] [assembly: AssemblyCompany("nanoFramework Contributors")] [assembly: AssemblyProduct("nanoFramework.System.Text")] -[assembly: AssemblyCopyright("Copyright © nanoFramework Contributors 2019")] +[assembly: AssemblyCopyright("Copyright (c) .NET Foundation and Contributors")] //////////////////////////////////////////////////////////////// // update this whenever the native assembly signature changes // diff --git a/nanoFramework.System.Text/Text/Decoder.cs b/nanoFramework.System.Text/Text/Decoder.cs index 8e1b3a9..ffbb347 100644 --- a/nanoFramework.System.Text/Text/Decoder.cs +++ b/nanoFramework.System.Text/Text/Decoder.cs @@ -1,5 +1,5 @@ // -// Copyright (c) 2017 The nanoFramework project contributors +// Copyright (c) .NET Foundation and Contributors // Portions Copyright (c) Microsoft Corporation. All rights reserved. // See LICENSE file in the project root for full license information. // diff --git a/nanoFramework.System.Text/Text/Encoding.cs b/nanoFramework.System.Text/Text/Encoding.cs index ce747f4..6776ea8 100644 --- a/nanoFramework.System.Text/Text/Encoding.cs +++ b/nanoFramework.System.Text/Text/Encoding.cs @@ -1,5 +1,5 @@ // -// Copyright (c) 2017 The nanoFramework project contributors +// Copyright (c) .NET Foundation and Contributors // Portions Copyright (c) Microsoft Corporation. All rights reserved. // See LICENSE file in the project root for full license information. // diff --git a/nanoFramework.System.Text/Text/StringBuilder.cs b/nanoFramework.System.Text/Text/StringBuilder.cs index e55b1e0..9b9a317 100644 --- a/nanoFramework.System.Text/Text/StringBuilder.cs +++ b/nanoFramework.System.Text/Text/StringBuilder.cs @@ -1,5 +1,5 @@ // -// Copyright (c) 2017 The nanoFramework project contributors +// Copyright (c) .NET Foundation and Contributors // Portions Copyright (c) Microsoft Corporation. All rights reserved. // See LICENSE file in the project root for full license information. // diff --git a/nanoFramework.System.Text/Text/UTF8Decoder.cs b/nanoFramework.System.Text/Text/UTF8Decoder.cs index 0ee0c03..db909bb 100644 --- a/nanoFramework.System.Text/Text/UTF8Decoder.cs +++ b/nanoFramework.System.Text/Text/UTF8Decoder.cs @@ -1,5 +1,5 @@ // -// Copyright (c) 2017 The nanoFramework project contributors +// Copyright (c) .NET Foundation and Contributors // Portions Copyright (c) Microsoft Corporation. All rights reserved. // See LICENSE file in the project root for full license information. // diff --git a/nanoFramework.System.Text/Text/UTF8Encoding.cs b/nanoFramework.System.Text/Text/UTF8Encoding.cs index 7688f46..df55c2a 100644 --- a/nanoFramework.System.Text/Text/UTF8Encoding.cs +++ b/nanoFramework.System.Text/Text/UTF8Encoding.cs @@ -1,5 +1,5 @@ // -// Copyright (c) 2017 The nanoFramework project contributors +// Copyright (c) .NET Foundation and Contributors // Portions Copyright (c) Microsoft Corporation. All rights reserved. // See LICENSE file in the project root for full license information. // From 420f81c6116eacb477e59b7ef5d3a8c49793fd2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Fri, 25 Sep 2020 18:52:13 +0100 Subject: [PATCH 10/76] Update README.md ***NO_CI*** --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 90128a8..98ddf9f 100644 --- a/README.md +++ b/README.md @@ -30,5 +30,9 @@ The **nanoFramework** Class Libraries are licensed under the [MIT license](LICEN ## Code of Conduct -This project has adopted the code of conduct defined by the [Contributor Covenant](http://contributor-covenant.org/) -to clarify expected behavior in our community. +This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. +For more information see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/code-of-conduct). + +### .NET Foundation + +This project is supported by the [.NET Foundation](https://dotnetfoundation.org). From 73dae68dfbe778d60a82abfdb4ebcce149ebdcd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Fri, 25 Sep 2020 18:55:44 +0100 Subject: [PATCH 11/76] Update README.md - Fix NuGet URL. ***NO_CI*** --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 98ddf9f..0853e8e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_lib-nanoFramework.System.Text&metric=alert_status)](https://sonarcloud.io/dashboard?id=nanoframework_lib-nanoFramework.System.Text) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_lib-nanoFramework.System.Text&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=nanoframework_lib-nanoFramework.System.Text) [![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) [![NuGet](https://img.shields.io/nuget/dt/nanoFramework.nanoFramework.System.Text.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.Text/) [![#yourfirstpr](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://github.com/nanoframework/Home/blob/master/CONTRIBUTING.md) +[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_lib-nanoFramework.System.Text&metric=alert_status)](https://sonarcloud.io/dashboard?id=nanoframework_lib-nanoFramework.System.Text) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_lib-nanoFramework.System.Text&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=nanoframework_lib-nanoFramework.System.Text) [![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) [![NuGet](https://img.shields.io/nuget/dt/nanoFramework.System.Text.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.Text/) [![#yourfirstpr](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://github.com/nanoframework/Home/blob/master/CONTRIBUTING.md) [![Discord](https://img.shields.io/discord/478725473862549535.svg?logo=discord&logoColor=white&label=Discord&color=7289DA)](https://discord.gg/gCyBu8T) ![nanoFramework logo](https://github.com/nanoframework/Home/blob/master/resources/logo/nanoFramework-repo-logo.png) From a29d083ef73d95262d5c5235d03359d4dcfbaaf5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 1 Oct 2020 01:25:56 +0100 Subject: [PATCH 12/76] Update dependencies --- nanoFramework.System.Text.nuspec | 2 +- nanoFramework.System.Text/nanoFramework.System.Text.nfproj | 6 +++--- nanoFramework.System.Text/packages.config | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index 40dd859..dd3b450 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -20,7 +20,7 @@ This package requires a target with nanoFramework.System.Text v$nativeVersion$.< System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index 745f79b..a88ec26 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -39,7 +39,7 @@ - + false @@ -57,8 +57,8 @@ - - ..\packages\nanoFramework.CoreLibrary.1.8.0-preview.6\lib\mscorlib.dll + + ..\packages\nanoFramework.CoreLibrary.1.9.0-preview.5\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index 7c10502..825f4c7 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 269c90dbcd9fa76c5c85302c9945e74f3821f5b8 Mon Sep 17 00:00:00 2001 From: nfbot Date: Thu, 1 Oct 2020 00:29:18 +0000 Subject: [PATCH 13/76] Update CHANGELOG for v1.1.1 ***NO_CI*** --- CHANGELOG.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2beec9..048cd4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,15 @@ ## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/HEAD) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.0...HEAD) +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.2...HEAD) + +**Documentation and other chores:** + +- Update dependencies [\#14](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/14) + +## [v1.1.1-preview.2](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.2) (2020-09-19) + +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.0...v1.1.1-preview.2) **Documentation and other chores:** From 53a7304ce23f6f9cb9c61cafddff5957c318dc38 Mon Sep 17 00:00:00 2001 From: nfbot Date: Tue, 20 Oct 2020 18:46:43 +0100 Subject: [PATCH 14/76] Bumps nanoFramework.CoreLibrary from 1.9.0-preview.5 to 1.9.1-preview.4 --- nanoFramework.System.Text.nuspec | 2 +- .../nanoFramework.System.Text.nfproj | 8 ++++---- nanoFramework.System.Text/packages.config | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index dd3b450..ef45732 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -20,7 +20,7 @@ This package requires a target with nanoFramework.System.Text v$nativeVersion$.< System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index a88ec26..4de4b3e 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -39,7 +39,7 @@ - + false @@ -57,8 +57,8 @@ - - ..\packages\nanoFramework.CoreLibrary.1.9.0-preview.5\lib\mscorlib.dll + + ..\packages\nanoFramework.CoreLibrary.1.9.1-preview.4\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index 825f4c7..6111da8 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 82623483408553586b67768c2f3c7465d6544538 Mon Sep 17 00:00:00 2001 From: nfbot Date: Tue, 20 Oct 2020 17:53:25 +0000 Subject: [PATCH 15/76] Update CHANGELOG for v1.1.1 ***NO_CI*** --- CHANGELOG.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 048cd4e..aaca995 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,15 @@ ## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/HEAD) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.2...HEAD) +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.10...HEAD) **Documentation and other chores:** -- Update dependencies [\#14](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/14) +- Bumps nanoFramework.CoreLibrary from 1.9.0-preview.5 to 1.9.1-preview.4 [\#15](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/15) + +## [v1.1.1-preview.10](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.10) (2020-10-01) + +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.2...v1.1.1-preview.10) ## [v1.1.1-preview.2](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.2) (2020-09-19) @@ -14,6 +18,7 @@ **Documentation and other chores:** +- Update dependencies [\#14](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/14) - Update dependencies [\#13](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/13) ## [v1.1.0](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.0) (2020-06-16) From 46d6050290da11dd0a8157ba6305bbd4e6e6f2cc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Oct 2020 01:26:55 +0100 Subject: [PATCH 16/76] Update dependencies --- nanoFramework.System.Text.nuspec | 2 +- nanoFramework.System.Text/nanoFramework.System.Text.nfproj | 6 +++--- nanoFramework.System.Text/packages.config | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index ef45732..a6cbe76 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -20,7 +20,7 @@ This package requires a target with nanoFramework.System.Text v$nativeVersion$.< System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index 4de4b3e..ff90443 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -39,7 +39,7 @@ - + false @@ -58,7 +58,7 @@ - ..\packages\nanoFramework.CoreLibrary.1.9.1-preview.4\lib\mscorlib.dll + ..\packages\nanoFramework.CoreLibrary.1.9.1-preview.6\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index 6111da8..686ff9e 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From a99b5a4a1701144c12d38c273a7a6ea7cd087929 Mon Sep 17 00:00:00 2001 From: nfbot Date: Wed, 21 Oct 2020 00:30:47 +0000 Subject: [PATCH 17/76] Update CHANGELOG for v1.1.1 ***NO_CI*** --- CHANGELOG.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aaca995..8d5c799 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,15 @@ ## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/HEAD) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.10...HEAD) +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.12...HEAD) + +**Documentation and other chores:** + +- Update dependencies [\#17](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/17) + +## [v1.1.1-preview.12](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.12) (2020-10-20) + +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.10...v1.1.1-preview.12) **Documentation and other chores:** @@ -12,13 +20,16 @@ [Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.2...v1.1.1-preview.10) +**Documentation and other chores:** + +- Update dependencies [\#14](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/14) + ## [v1.1.1-preview.2](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.2) (2020-09-19) [Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.0...v1.1.1-preview.2) **Documentation and other chores:** -- Update dependencies [\#14](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/14) - Update dependencies [\#13](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/13) ## [v1.1.0](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.0) (2020-06-16) From da194673795718fe87b5126f182a6568e1c533c2 Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Tue, 1 Dec 2020 00:35:26 +0000 Subject: [PATCH 18/76] Update CICD Image (#18) ***NO_CI*** --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5a755bc..d3b9b41 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -22,7 +22,7 @@ jobs: - job: Build_Library condition: or( eq(variables['UPDATE_DEPENDENTS'], 'false'), eq(variables['StartReleaseCandidate'], 'true') ) pool: - vmImage: 'VS2017-Win2016' + vmImage: 'windows-2019' variables: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true From 6b8b7fb12653600a36c0ee0886aa7665b4accfe0 Mon Sep 17 00:00:00 2001 From: nfbot Date: Mon, 7 Dec 2020 15:11:05 +0000 Subject: [PATCH 19/76] Bumps nanoFramework.CoreLibrary from 1.9.1-preview.6 to 1.10.0-preview.4 --- nanoFramework.System.Text.nuspec | 2 +- .../nanoFramework.System.Text.nfproj | 8 ++++---- nanoFramework.System.Text/packages.config | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index a6cbe76..2da45f3 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -20,7 +20,7 @@ This package requires a target with nanoFramework.System.Text v$nativeVersion$.< System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index ff90443..15177b8 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -39,7 +39,7 @@ - + false @@ -57,8 +57,8 @@ - - ..\packages\nanoFramework.CoreLibrary.1.9.1-preview.6\lib\mscorlib.dll + + ..\packages\nanoFramework.CoreLibrary.1.10.0-preview.4\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index 686ff9e..39bea5d 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 37ee78bdd7e08753664116545e1d40dd5524c7fd Mon Sep 17 00:00:00 2001 From: nfbot Date: Mon, 7 Dec 2020 15:19:23 +0000 Subject: [PATCH 20/76] Update CHANGELOG for v1.1.1 ***NO_CI*** --- CHANGELOG.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d5c799..647d4d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,15 @@ ## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/HEAD) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.12...HEAD) +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.14...HEAD) + +**Documentation and other chores:** + +- Bumps nanoFramework.CoreLibrary from 1.9.1-preview.6 to 1.10.0-preview.4 [\#19](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/19) + +## [v1.1.1-preview.14](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.14) (2020-10-21) + +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.12...v1.1.1-preview.14) **Documentation and other chores:** From fd7b89e3fc7c7342e2a0a72b9c7d5c24eb728e3b Mon Sep 17 00:00:00 2001 From: nfbot Date: Mon, 28 Dec 2020 13:47:07 +0000 Subject: [PATCH 21/76] Bumps nanoFramework.CoreLibrary from 1.10.0-preview.4 to 1.10.1-preview.6 --- nanoFramework.System.Text.nuspec | 2 +- nanoFramework.System.Text/nanoFramework.System.Text.nfproj | 6 +++--- nanoFramework.System.Text/packages.config | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index 2da45f3..06d9b44 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -20,7 +20,7 @@ This package requires a target with nanoFramework.System.Text v$nativeVersion$.< System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index 15177b8..ace7db8 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -39,7 +39,7 @@ - + false @@ -57,8 +57,8 @@ - - ..\packages\nanoFramework.CoreLibrary.1.10.0-preview.4\lib\mscorlib.dll + + ..\packages\nanoFramework.CoreLibrary.1.10.1-preview.6\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index 39bea5d..ae9566f 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 7499b40c38b0993493fc0e0d9eabbfe1b82222da Mon Sep 17 00:00:00 2001 From: nfbot Date: Mon, 28 Dec 2020 13:54:44 +0000 Subject: [PATCH 22/76] Update CHANGELOG for v1.1.1 ***NO_CI*** --- CHANGELOG.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 647d4d0..ea511dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,15 @@ ## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/HEAD) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.14...HEAD) +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.17...HEAD) + +**Documentation and other chores:** + +- Bumps nanoFramework.CoreLibrary from 1.10.0-preview.4 to 1.10.1-preview.6 [\#20](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/20) + +## [v1.1.1-preview.17](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.17) (2020-12-07) + +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.14...v1.1.1-preview.17) **Documentation and other chores:** From 25cf25c49a63852e859e66d42a448b825338e201 Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Mon, 28 Dec 2020 14:12:56 +0000 Subject: [PATCH 23/76] Work CI-CD - Add sign config files. ***NO_CI*** --- config/SignClient.json | 14 ++++++++++++++ config/filelist.txt | 1 + 2 files changed, 15 insertions(+) create mode 100644 config/SignClient.json create mode 100644 config/filelist.txt diff --git a/config/SignClient.json b/config/SignClient.json new file mode 100644 index 0000000..482177d --- /dev/null +++ b/config/SignClient.json @@ -0,0 +1,14 @@ +{ + "SignClient": { + "AzureAd": { + "AADInstance": "https://login.microsoftonline.com/", + "ClientId": "c248d68a-ba6f-4aa9-8a68-71fe872063f8", + "TenantId": "16076fdc-fcc1-4a15-b1ca-32c9a255900e" + }, + "Service": { + "Url": "https://codesign.dotnetfoundation.org/", + "ResourceId": "https://SignService/3c30251f-36f3-490b-a955-520addb85001" + } + } + } + \ No newline at end of file diff --git a/config/filelist.txt b/config/filelist.txt new file mode 100644 index 0000000..f066396 --- /dev/null +++ b/config/filelist.txt @@ -0,0 +1 @@ +**/nanoFramework.System.Text.* \ No newline at end of file From 726a277f992820654cf068f5496b1ff7980f3646 Mon Sep 17 00:00:00 2001 From: nfbot Date: Tue, 29 Dec 2020 13:29:54 +0000 Subject: [PATCH 24/76] Bumps nanoFramework.CoreLibrary from 1.10.1-preview.6 to 1.10.1-preview.7 --- nanoFramework.System.Text.nuspec | 2 +- nanoFramework.System.Text/nanoFramework.System.Text.nfproj | 4 ++-- nanoFramework.System.Text/packages.config | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index 06d9b44..505e1cc 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -20,7 +20,7 @@ This package requires a target with nanoFramework.System.Text v$nativeVersion$.< System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index ace7db8..9f286e6 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -39,7 +39,7 @@ - + false @@ -58,7 +58,7 @@ - ..\packages\nanoFramework.CoreLibrary.1.10.1-preview.6\lib\mscorlib.dll + ..\packages\nanoFramework.CoreLibrary.1.10.1-preview.7\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index ae9566f..91fff5f 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 1b2779353dedc591acca9fc982e406812942a3c9 Mon Sep 17 00:00:00 2001 From: nfbot Date: Tue, 29 Dec 2020 13:36:51 +0000 Subject: [PATCH 25/76] Update CHANGELOG for v1.1.1 ***NO_CI*** --- CHANGELOG.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea511dc..4b55018 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,15 @@ ## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/HEAD) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.17...HEAD) +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.19...HEAD) + +**Documentation and other chores:** + +- Bumps nanoFramework.CoreLibrary from 1.10.1-preview.6 to 1.10.1-preview.7 [\#21](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/21) + +## [v1.1.1-preview.19](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.19) (2020-12-28) + +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.17...v1.1.1-preview.19) **Documentation and other chores:** From 43ae314d7f56cdc0324b9a7383eb29fbba18937e Mon Sep 17 00:00:00 2001 From: nfbot Date: Wed, 6 Jan 2021 13:53:46 +0000 Subject: [PATCH 26/76] Bumps nanoFramework.CoreLibrary from 1.10.1-preview.7 to 1.10.1-preview.9 --- nanoFramework.System.Text.nuspec | 2 +- nanoFramework.System.Text/nanoFramework.System.Text.nfproj | 4 ++-- nanoFramework.System.Text/packages.config | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index 505e1cc..6a758de 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -20,7 +20,7 @@ This package requires a target with nanoFramework.System.Text v$nativeVersion$.< System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index 9f286e6..89f960a 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -39,7 +39,7 @@ - + false @@ -58,7 +58,7 @@ - ..\packages\nanoFramework.CoreLibrary.1.10.1-preview.7\lib\mscorlib.dll + ..\packages\nanoFramework.CoreLibrary.1.10.1-preview.9\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index 91fff5f..cca1a4b 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From bd1bc1c218b6649b8ecc4953a0b1ea28515a128c Mon Sep 17 00:00:00 2001 From: nfbot Date: Wed, 6 Jan 2021 14:01:44 +0000 Subject: [PATCH 27/76] Update CHANGELOG for v1.1.1 ***NO_CI*** --- CHANGELOG.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b55018..f03c2cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,15 @@ ## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/HEAD) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.19...HEAD) +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.22...HEAD) + +**Documentation and other chores:** + +- Bumps nanoFramework.CoreLibrary from 1.10.1-preview.7 to 1.10.1-preview.9 [\#22](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/22) + +## [v1.1.1-preview.22](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.22) (2020-12-29) + +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.19...v1.1.1-preview.22) **Documentation and other chores:** From 37cf8de2874d46287d39b17228e1ca0c02822f63 Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Thu, 11 Feb 2021 12:35:05 +0000 Subject: [PATCH 28/76] Update update-dependencies.yml - Update PR github action to v3. ***NO_CI*** --- .github/workflows/update-dependencies.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index a2c2cf3..58a5045 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -35,7 +35,7 @@ jobs: run: ./github-actions/update-nf-dependencies.ps1 working-directory: tools - name: Create Pull Request - uses: peter-evans/create-pull-request@v2.8.1 + uses: peter-evans/create-pull-request@v3 if: env.CREATE_PR == 'true' with: title: '${{ env.PR_TITLE }}' @@ -45,6 +45,8 @@ jobs: [version update] ### :warning: This is an automated update. :warning: - committer: 'nfbot ' + committer: 'nfbot ' branch: ${{ env.BRANCH_NAME }} path: main + labels: | + Type: dependencies From c9903868e32302a93741fb7c269c9b42a4c17f3d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Feb 2021 00:18:27 +0000 Subject: [PATCH 29/76] Update 2 nuget dependencies --- nanoFramework.System.Text.sln | 2 +- .../nanoFramework.System.Text.nfproj | 30 +++++++++---------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/nanoFramework.System.Text.sln b/nanoFramework.System.Text.sln index b752e88..b21080a 100644 --- a/nanoFramework.System.Text.sln +++ b/nanoFramework.System.Text.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.28307.902 diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index 89f960a..2a243e8 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -1,23 +1,23 @@ - - + + - $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.\ Debug AnyCPU - {11A8DD76-328B-46DF-9F39-F559912D0360};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 9b99cac1-e74b-4df7-ac98-a4d4923afb47 + {1.8DD76-328B-46DF-9F39-F55991.0360};{FAE04EC0-301.1.3-BF4B-00C04F79EFBC} + 9b99cac1.74b-4df7-ac98-a4d4923afb47 Library Properties - 512 - true + 51./FileAlignment> + true nanoFramework.System.Text nanoFramework.System.Text - v1.0 + v1. True - bin\$(Configuration)\nanoFramework.System.Text.xml + bin\$(Configuration)\nanoFramework.System.Text.xml true @@ -39,7 +39,7 @@ - + false @@ -57,8 +57,8 @@ - - ..\packages\nanoFramework.CoreLibrary.1.10.1-preview.9\lib\mscorlib.dll + + - This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=3221..The missing file is {0}. - + From 13e2d6f3e9f23dd7e248eb68bbbaf611d4fea9bc Mon Sep 17 00:00:00 2001 From: josesimoes Date: Tue, 16 Feb 2021 13:27:10 +0000 Subject: [PATCH 30/76] Revert "Update 2 nuget dependencies" This reverts commit c9903868e32302a93741fb7c269c9b42a4c17f3d. ***NO_CI*** --- nanoFramework.System.Text.sln | 2 +- .../nanoFramework.System.Text.nfproj | 30 +++++++++---------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/nanoFramework.System.Text.sln b/nanoFramework.System.Text.sln index b21080a..b752e88 100644 --- a/nanoFramework.System.Text.sln +++ b/nanoFramework.System.Text.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.28307.902 diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index 2a243e8..89f960a 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -1,23 +1,23 @@ - - + + - $(MSBuildToolsPath)..\..\..\nanoFramework\v1.\ + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ Debug AnyCPU - {1.8DD76-328B-46DF-9F39-F55991.0360};{FAE04EC0-301.1.3-BF4B-00C04F79EFBC} - 9b99cac1.74b-4df7-ac98-a4d4923afb47 + {11A8DD76-328B-46DF-9F39-F559912D0360};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 9b99cac1-e74b-4df7-ac98-a4d4923afb47 Library Properties - 51./FileAlignment> - true + 512 + true nanoFramework.System.Text nanoFramework.System.Text - v1. + v1.0 True - bin\$(Configuration)\nanoFramework.System.Text.xml + bin\$(Configuration)\nanoFramework.System.Text.xml true @@ -39,7 +39,7 @@ - + false @@ -57,8 +57,8 @@ - + ..\packages\nanoFramework.CoreLibrary.1.10.1-preview.9\lib\mscorlib.dll True @@ -68,11 +68,11 @@ - + - This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=3221..The missing file is {0}. + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + From 5ecec2cf7361cc1030c3c0e50e3b8644bfef4fef Mon Sep 17 00:00:00 2001 From: nfbot Date: Tue, 2 Mar 2021 12:27:47 +0000 Subject: [PATCH 31/76] Bumps nanoFramework.CoreLibrary from 1.10.1-preview.9 to 1.10.1-preview.11 --- nanoFramework.System.Text.nuspec | 2 +- nanoFramework.System.Text/nanoFramework.System.Text.nfproj | 4 ++-- nanoFramework.System.Text/packages.config | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index 6a758de..7544372 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -20,7 +20,7 @@ This package requires a target with nanoFramework.System.Text v$nativeVersion$.< System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index 89f960a..3b0abc0 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -39,7 +39,7 @@ - + false @@ -58,7 +58,7 @@ - ..\packages\nanoFramework.CoreLibrary.1.10.1-preview.9\lib\mscorlib.dll + ..\packages\nanoFramework.CoreLibrary.1.10.1-preview.11\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index cca1a4b..341b863 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 843195804528461dbaf485bb752d10f75b8c44b6 Mon Sep 17 00:00:00 2001 From: nfbot Date: Tue, 2 Mar 2021 12:34:56 +0000 Subject: [PATCH 32/76] Update CHANGELOG for v1.1.1 ***NO_CI*** --- CHANGELOG.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f03c2cb..807995b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,16 @@ ## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/HEAD) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.22...HEAD) +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.24...HEAD) + +**Documentation and other chores:** + +- Bumps nanoFramework.CoreLibrary from 1.10.1-preview.9 to 1.10.1-preview.11 [\#24](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/24) +- Update 2 nuget dependencies [\#23](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/23) + +## [v1.1.1-preview.24](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.24) (2021-01-06) + +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.22...v1.1.1-preview.24) **Documentation and other chores:** From 20200d55e05bf249c18120d2c91a7ea6c444569c Mon Sep 17 00:00:00 2001 From: Laurent Ellerbach Date: Mon, 15 Mar 2021 12:59:09 +0100 Subject: [PATCH 33/76] Adding Unit Test from .NET Microframework (#25) ***NO_CI*** --- .gitignore | 2 + .../CSharp/SonarLint.xml | 89 ++++++ .../NFUnitTestStringBuilder/EncodingTests.cs | 67 +++++ .../NFUnitTestStringBuilder.nfproj | 72 +++++ .../Properties/AssemblyInfo.cs | 31 +++ .../StringBuilderTests.cs | 256 ++++++++++++++++++ .../NFUnitTestStringBuilder/nano.runsettings | 14 + Tests/NFUnitTestStringBuilder/packages.config | 5 + azure-pipelines.yml | 2 + nanoFramework.System.Text.sln | 17 +- .../nanoFramework.System.Text.nfproj | 6 +- 11 files changed, 558 insertions(+), 3 deletions(-) create mode 100644 .sonarlint/nanoframework_lib-nanoframework.system.text/CSharp/SonarLint.xml create mode 100644 Tests/NFUnitTestStringBuilder/EncodingTests.cs create mode 100644 Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj create mode 100644 Tests/NFUnitTestStringBuilder/Properties/AssemblyInfo.cs create mode 100644 Tests/NFUnitTestStringBuilder/StringBuilderTests.cs create mode 100644 Tests/NFUnitTestStringBuilder/nano.runsettings create mode 100644 Tests/NFUnitTestStringBuilder/packages.config diff --git a/.gitignore b/.gitignore index aee5823..674f3a9 100644 --- a/.gitignore +++ b/.gitignore @@ -255,3 +255,5 @@ paket-files/ #SoundCloud *.sonarqube/ +*.slconfig +*.ruleset diff --git a/.sonarlint/nanoframework_lib-nanoframework.system.text/CSharp/SonarLint.xml b/.sonarlint/nanoframework_lib-nanoframework.system.text/CSharp/SonarLint.xml new file mode 100644 index 0000000..21acd70 --- /dev/null +++ b/.sonarlint/nanoframework_lib-nanoframework.system.text/CSharp/SonarLint.xml @@ -0,0 +1,89 @@ + + + + + sonar.cs.analyzeGeneratedCode + false + + + sonar.cs.file.suffixes + .cs + + + sonar.cs.ignoreHeaderComments + true + + + sonar.cs.roslyn.ignoreIssues + false + + + + + S107 + + + max + 7 + + + + + S110 + + + max + 5 + + + + + S1479 + + + maximum + 30 + + + + + S2342 + + + flagsAttributeFormat + ^([A-Z]{1,3}[a-z0-9]+)*([A-Z]{2})?s$ + + + format + ^([A-Z]{1,3}[a-z0-9]+)*([A-Z]{2})?$ + + + + + S2436 + + + max + 2 + + + maxMethod + 3 + + + + + S3776 + + + propertyThreshold + 3 + + + threshold + 15 + + + + + \ No newline at end of file diff --git a/Tests/NFUnitTestStringBuilder/EncodingTests.cs b/Tests/NFUnitTestStringBuilder/EncodingTests.cs new file mode 100644 index 0000000..665a1c9 --- /dev/null +++ b/Tests/NFUnitTestStringBuilder/EncodingTests.cs @@ -0,0 +1,67 @@ +// +// Copyright (c) .NET Foundation and Contributors +// Portions Copyright (c) Microsoft Corporation. All rights reserved. +// See LICENSE file in the project root for full license information. +// + +using nanoFramework.TestFramework; +using System; +using System.Text; + +namespace NFUnitTestStringBuilder +{ + [TestClass] + class EncodingTests + { + [TestMethod] + public void Utf8EncodingTests_Test1() + { + string str = "this is a normal string that will be used to convert to bytes then back to a string"; + + byte[] data = new byte[128]; + int len = str.Length; + int idx = 0; + + Random rand = new Random(); + + int cBytes = 0; + + while (len > 0) + { + int size = (len <= 2) ? len : rand.Next(len / 2) + 1; + len -= size; + + int cnt = UTF8Encoding.UTF8.GetBytes(str, idx, size, data, cBytes); + + Assert.Equal(str.Substring(idx, size), new string(UTF8Encoding.UTF8.GetChars(data, cBytes, cnt))); + + cBytes += cnt; + idx += size; + } + Assert.Equal(cBytes, str.Length); + string strAfter = new string(UTF8Encoding.UTF8.GetChars(data, 0, cBytes)); + Assert.Equal(str, strAfter); + } + + [TestMethod] + public void Utf8EncodingTests_Test2() + { + string str = "this is a normal string that will be used to convert to bytes then back to a string"; + byte[] data = UTF8Encoding.UTF8.GetBytes(str); + Assert.Equal(data.Length, str.Length); + string strAfter = new string(UTF8Encoding.UTF8.GetChars(data)); + Assert.Equal(str, strAfter); + } + + [TestMethod] + public void Utf8EncodingTests_Test3() + { + // This tests involves a string with a special character + string str = "AB\u010DAB"; + byte[] data = new byte[4]; + int count = UTF8Encoding.UTF8.GetBytes(str, 1, 3, data, 0); + Assert.Equal(count, 4); + Assert.Equal(new string(UTF8Encoding.UTF8.GetChars(data)), "B\u010DA"); + } + } +} \ No newline at end of file diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj new file mode 100644 index 0000000..855d296 --- /dev/null +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -0,0 +1,72 @@ + + + + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ + + + + + + + Debug + AnyCPU + {11A8DD76-328B-46DF-9F39-F559912D0360};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + c5331952-b712-4c77-939b-27589ced5a24 + Library + Properties + 512 + NFUnitTestStringBuilder + NFUnitTest + False + true + UnitTest + v1.0 + + + + $(MSBuildProjectDirectory)\nano.runsettings + + + + + + + + + ..\..\packages\nanoFramework.CoreLibrary.1.10.1-preview.11\lib\mscorlib.dll + True + True + + + ..\..\packages\nanoFramework.TestFramework.1.0.89\lib\nanoFramework.TestFramework.dll + True + True + + + ..\..\packages\nanoFramework.TestFramework.1.0.89\lib\nanoFramework.UnitTestLauncher.exe + True + True + + + + + + + + + + + + + + + + + + + + Update the Import path in nfproj to the correct nanoFramework.TestFramework NuGet package folder. + + + + \ No newline at end of file diff --git a/Tests/NFUnitTestStringBuilder/Properties/AssemblyInfo.cs b/Tests/NFUnitTestStringBuilder/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..a3735af --- /dev/null +++ b/Tests/NFUnitTestStringBuilder/Properties/AssemblyInfo.cs @@ -0,0 +1,31 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 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: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyCopyright("Copyright (c) 2021 nanoFramework contributors")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Tests/NFUnitTestStringBuilder/StringBuilderTests.cs b/Tests/NFUnitTestStringBuilder/StringBuilderTests.cs new file mode 100644 index 0000000..960d676 --- /dev/null +++ b/Tests/NFUnitTestStringBuilder/StringBuilderTests.cs @@ -0,0 +1,256 @@ +// +// Copyright (c) .NET Foundation and Contributors +// Portions Copyright (c) Microsoft Corporation. All rights reserved. +// See LICENSE file in the project root for full license information. +// + +using nanoFramework.TestFramework; +using System; +using System.Text; + +namespace NFUnitTestStringBuilder +{ + [TestClass] + public class StringBuilderTests + { + private static StringBuilder stringBuilder; + + [Setup] + public void InitializeStringBuild() + { + stringBuilder = new StringBuilder(); + } + + [TestMethod] + public void Test_0_AppendTest_0() + { + stringBuilder.Append(true); + Assert.Equal(stringBuilder.ToString(), Boolean.TrueString); + stringBuilder.Append(false); + Assert.Equal(stringBuilder.ToString(), string.Concat(Boolean.TrueString, Boolean.FalseString)); + stringBuilder.Append(byte.MinValue); + Assert.Equal(stringBuilder.ToString(), string.Concat(Boolean.TrueString, Boolean.FalseString, byte.MinValue)); + stringBuilder.Append(new char[] { 'x', 'a' }); + Assert.Equal(stringBuilder.ToString(), string.Concat(Boolean.TrueString, Boolean.FalseString, byte.MinValue, char.MinValue, "xa")); + stringBuilder.Append(double.Epsilon); + Assert.Equal(stringBuilder.ToString(), string.Concat(Boolean.TrueString, Boolean.FalseString, byte.MinValue, char.MinValue, "xa", double.Epsilon.ToString())); + stringBuilder.Append(float.Epsilon); + Assert.Equal(stringBuilder.ToString(), string.Concat(Boolean.TrueString, Boolean.FalseString, byte.MinValue, char.MinValue, "xa", double.Epsilon.ToString(), float.Epsilon.ToString())); + stringBuilder.Append(int.MaxValue); + Assert.Equal(stringBuilder.ToString(), string.Concat(Boolean.TrueString, Boolean.FalseString, byte.MinValue, char.MinValue, "xa", double.Epsilon.ToString(), float.Epsilon.ToString(), int.MaxValue)); + stringBuilder.Append(long.MaxValue); + Assert.Equal(stringBuilder.ToString(), string.Concat(Boolean.TrueString, Boolean.FalseString, byte.MinValue, char.MinValue, "xa", double.Epsilon.ToString(), float.Epsilon.ToString(), int.MaxValue, long.MaxValue)); + stringBuilder.Append((object)"string"); + Assert.Equal(stringBuilder.ToString(), string.Concat(Boolean.TrueString, Boolean.FalseString, byte.MinValue, char.MinValue, "xa", double.Epsilon.ToString(), float.Epsilon.ToString(), int.MaxValue, long.MaxValue, "string")); + } + + [TestMethod] + public void Test_1_RemoveTest_0() + { + Assert.Equal(stringBuilder.Clear().ToString(), string.Empty); + string testString = "0123456789"; + stringBuilder.Append(testString); + stringBuilder.Remove(0, 1); + Assert.Equal(stringBuilder.ToString(), "123456789"); + stringBuilder.Remove(stringBuilder.Length - 1, 1); + Assert.Equal(stringBuilder.ToString(), "12345678"); + } + + [TestMethod] + public void Test_2_InsertTest_0() + { + stringBuilder.Clear(); + string testString = "0000"; + stringBuilder.Append(testString); + stringBuilder.Insert(0, "x", 2); + Assert.Equal(stringBuilder.ToString(), "xx0000"); + stringBuilder.Insert(stringBuilder.Length, "x", 2); + Assert.Equal(stringBuilder.ToString(), "xx0000xx"); + } + + [TestMethod] + public void Test_3_ReplaceTest_0() + { + stringBuilder.Clear(); + string testString = "0000"; + stringBuilder.Append(testString); + stringBuilder.Append("_"); + stringBuilder.Append(testString); + stringBuilder.Replace(testString, "xx"); + Assert.Equal(stringBuilder.ToString(), "xx_xx"); + } + + [TestMethod] + public void Test_3_ReplaceTest_1() + { + stringBuilder.Clear(); string testString = "BEGIN"; + //stringBuilder.Append("BEGIN_MID_END"); + stringBuilder.Append('B'); + stringBuilder.Append('E'); + stringBuilder.Append('G'); + stringBuilder.Append('I'); + stringBuilder.Append('N'); + stringBuilder.Append('_'); + stringBuilder.Append('M'); + stringBuilder.Append('I'); + stringBuilder.Append('D'); + stringBuilder.Append('_'); + stringBuilder.Append('E'); + stringBuilder.Append('N'); + stringBuilder.Append('D'); + stringBuilder.Replace(testString, "xx"); + Assert.Equal(stringBuilder.ToString(), "xx_MID_END"); + } + + [TestMethod] + public void Test_3_ReplaceTest_2() + { + string testString = "MID"; + stringBuilder.Replace(testString, "xx"); + Assert.Equal(stringBuilder.ToString(), "xx_xx_END"); + } + + [TestMethod] + public void Test_3_ReplaceTest_3() + { + string testString = "END"; + stringBuilder.Replace(testString, "xx"); + Assert.Equal(stringBuilder.ToString(), "xx_xx_xx"); + } + + [TestMethod] + public void Test_3_ReplaceTest_4() + { + string testString = "The quick br!wn d#g jumps #ver the lazy cat."; + stringBuilder = new System.Text.StringBuilder(testString); + stringBuilder.Replace('#', '!', 15, 29); // Some '#' -> '!' + Assert.Equal(stringBuilder.ToString(), "The quick br!wn d!g jumps !ver the lazy cat."); + stringBuilder.Replace('!', 'o'); // All '!' -> 'o' + Assert.Equal(stringBuilder.ToString(), "The quick brown dog jumps over the lazy cat."); + stringBuilder.Replace("cat", "dog"); // All "cat" -> "dog" + Assert.Equal(stringBuilder.ToString(), "The quick brown dog jumps over the lazy dog."); + stringBuilder.Replace("dog", "fox", 15, 20); // Some "dog" -> "fox" + Assert.Equal(stringBuilder.ToString(), "The quick brown fox jumps over the lazy dog."); + } + + [TestMethod] + public void Test_3_ReplaceTest_5() + { + stringBuilder.Clear(); + stringBuilder.Append("12345"); + stringBuilder.Replace("45", "def"); + Assert.Equal(stringBuilder.ToString(), "123def"); + } + + [TestMethod] + public void Test_3_ReplaceTest_6() + { + stringBuilder.Clear(); + + stringBuilder.Append("[{1234}]Test}]"); + stringBuilder.Replace("}]", "}]example"); + Assert.Equal(stringBuilder.ToString(), "[{1234}]exampleTest}]example"); + } + + [TestMethod] + public void Test_3_ReplaceTest_7() + { + var random = new Random(); + for (int i = 0; i < 1000; i++) + { + string sRaw, sFind, sReplace; + GenerateFuzzyParameters(out sRaw, out sFind, out sReplace, random); + stringBuilder.Clear(); + stringBuilder.Append(sRaw); + stringBuilder.Replace(sFind, sReplace); + string sMFOutput = stringBuilder.ToString(); + string sNativeOutput = NativeReplace(sRaw, sFind, sReplace); + + Assert.Equal(sMFOutput, sNativeOutput); + } + } + + void GenerateFuzzyParameters(out string sRaw, out string sFind, out string sReplace, Random random) + { + int cFind = random.Next(1, 4); + sFind = RandomString(random, 2, 6); + sReplace = RandomString(random, 4, 10); + + sRaw = string.Empty; + for (int i = 0; i < cFind; i++) + { + if (i > 0 || random.Next() % 5 > 0) + { + sRaw += RandomString(random, 2, 6); + } + + sRaw += sFind; + } + + if (random.Next() % 5 > 0) + { + sRaw += RandomString(random, 2, 6); + } + } + + string RandomString(Random random, int iLenMin, int iLenMax) + { + string sChars = "abcdefghijklmnopqrstuvwxyz0123456789{}[]-=+()"; + int length = random.Next(iLenMin, iLenMax); + + string sOutput = string.Empty; + for (int i = 0; i < length; i++) + { + sOutput += sChars[random.Next(0, sChars.Length - 1)]; + } + + return sOutput; + } + + string NativeReplace(string sRaw, string sFind, string sReplace) + { + string sOutput = sRaw; + int i = 0; + + while (i < sOutput.Length) + { + int p = sOutput.IndexOf(sFind, i); + if (p < 0) + { + break; + } + + sOutput = sOutput.Substring(0, p) + sReplace + sOutput.Substring(p + sFind.Length); + i = p + sReplace.Length; + } + + return sOutput; + } + + [TestMethod] + public void Test_4_CapacityTest_0() + { + stringBuilder.Length = 0; + stringBuilder.Capacity = 5; + Assert.Equal(stringBuilder.ToString(), string.Empty); string testString = "0000"; + stringBuilder.Append(string.Empty); + stringBuilder.Append(testString); + stringBuilder.Append(string.Empty); + //should allocate here + stringBuilder.Append("_"); + stringBuilder.Append("_"); + //result is true if capacity is > 5 + Assert.True(stringBuilder.Capacity > 5); + } + + } + + static class RandomExtension + { + static public int Next(this Random random, int iMin, int iMax) + { + return random.Next(iMax - iMin) + iMin; + } + } +} + diff --git a/Tests/NFUnitTestStringBuilder/nano.runsettings b/Tests/NFUnitTestStringBuilder/nano.runsettings new file mode 100644 index 0000000..fa881e3 --- /dev/null +++ b/Tests/NFUnitTestStringBuilder/nano.runsettings @@ -0,0 +1,14 @@ + + + + + 1 + .\TestResults + 120000 + Framework40 + + + None + False + + \ No newline at end of file diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config new file mode 100644 index 0000000..8e119fd --- /dev/null +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d3b9b41..f61db7b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -39,6 +39,8 @@ jobs: - template: azure-pipelines-templates/class-lib-build.yml@templates parameters: sonarCloudProject: 'nanoframework_lib-nanoFramework.System.Text' + runUnitTests: true + unitTestRunsettings: '$(System.DefaultWorkingDirectory)\Tests\NFUnitTestStringBuilder\nano.runsettings' ############################## - job: Update_Dependencies diff --git a/nanoFramework.System.Text.sln b/nanoFramework.System.Text.sln index b752e88..9e54baf 100644 --- a/nanoFramework.System.Text.sln +++ b/nanoFramework.System.Text.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.28307.902 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31025.218 MinimumVisualStudioVersion = 10.0.40219.1 Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "nanoFramework.System.Text", "nanoFramework.System.Text\nanoFramework.System.Text.nfproj", "{9B99CAC1-E74B-4DF7-AC98-A4D4923AFB47}" EndProject @@ -12,6 +12,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution version.json = version.json EndProjectSection EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{1A9B4D93-29BC-4314-ABF9-E4BC2A755032}" +EndProject +Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "NFUnitTestStringBuilder", "Tests\NFUnitTestStringBuilder\NFUnitTestStringBuilder.nfproj", "{C5331952-B712-4C77-939B-27589CED5A24}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -24,10 +28,19 @@ Global {9B99CAC1-E74B-4DF7-AC98-A4D4923AFB47}.Release|Any CPU.ActiveCfg = Release|Any CPU {9B99CAC1-E74B-4DF7-AC98-A4D4923AFB47}.Release|Any CPU.Build.0 = Release|Any CPU {9B99CAC1-E74B-4DF7-AC98-A4D4923AFB47}.Release|Any CPU.Deploy.0 = Release|Any CPU + {C5331952-B712-4C77-939B-27589CED5A24}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C5331952-B712-4C77-939B-27589CED5A24}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C5331952-B712-4C77-939B-27589CED5A24}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {C5331952-B712-4C77-939B-27589CED5A24}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C5331952-B712-4C77-939B-27589CED5A24}.Release|Any CPU.Build.0 = Release|Any CPU + {C5331952-B712-4C77-939B-27589CED5A24}.Release|Any CPU.Deploy.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {C5331952-B712-4C77-939B-27589CED5A24} = {1A9B4D93-29BC-4314-ABF9-E4BC2A755032} + EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {863DB2A2-5555-49B7-A921-C2EF51A150B1} EndGlobalSection diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index 3b0abc0..f1ef4f6 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -32,6 +32,7 @@ bin\$(Configuration)\Stubs nf_system_text nanoFramework.System.Text + ..\.sonarlint\nanoframework_lib-nanoframework.system.textcsharp.ruleset @@ -62,6 +63,9 @@ True + + + @@ -75,4 +79,4 @@ - + \ No newline at end of file From df400b1137716f56a9bc90bfec436d8eb2bec0a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Mon, 15 Mar 2021 12:06:43 +0000 Subject: [PATCH 34/76] Work CI-CD - Add assets and update nuspec accordingly. ***NO_CI*** --- LICENSE => LICENSE.md | 0 assets/nf-logo.png | Bin 0 -> 4129 bytes readme.txt => assets/readme.txt | 0 nanoFramework.System.Text.nuspec | 13 ++++++++----- 4 files changed, 8 insertions(+), 5 deletions(-) rename LICENSE => LICENSE.md (100%) create mode 100644 assets/nf-logo.png rename readme.txt => assets/readme.txt (100%) diff --git a/LICENSE b/LICENSE.md similarity index 100% rename from LICENSE rename to LICENSE.md diff --git a/assets/nf-logo.png b/assets/nf-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..6f576caa11431ae1f032fde71fd1ec0bd049ed39 GIT binary patch literal 4129 zcmaKv_dnH-7sucCa#f_8J+E~yvPrg#n@whsWDAA3GBeBGD_gcGnc3sodyi5!*Uq)K z%l-QN1K%Icc|D%zaejWC*9p_sR3;^+Ck6n3R8>Vm_eTBytJ_33y+g));6_02b(N7o z=`iEw4G`MMKa~f7iWm}{Ipl`#IH?%E2LK}R{|e+BZA}9J&>B?*`DY#`*e@jIjIR@W zMmAH^-JNZAND0G>{0oXwjQ1hob#>HZw^etVmp<8-P_mP(GPHqdP*ih}?|T*1;09f7 zhy|C^P_r0o=rX~l+}`k*MFJgGdP++bYYyna*5*(A#1(s|_{5y>=FZIHxfV68tiz$f zAs0XV^@Uf)t{pWQcdtOwUz(NANI;_SzT7YuVeETi&`QStM~xVw1KOu~x>qh1l8_y{ zie_4)R2A#xIazbB3- z)N6Yj(>=nMdLM{!fMr+CMzP@$36v16oQ6Gay39iZ%zFG}EqK>}XA}oimX@rbJuDGm{p~|bJ$a~G?*UI~A9J|73-fZ;Wbvh~c{2Ic=zKb!$ zQDB;hnmSV#*8H}E*VXJon`N~x_hGUb|Dor-h$#X3sVwKGPx_q| zKR~n{y-CZ`9~ZJut9y`W{g&;am?3J;Umq=|1J|c?)zriC{4IY)Q-3XMyVGB6}8^&55%LpG`X8Sbp$h}XaZ>~3!H4t#@p zO=jUdAM1wfltN!w%py|mw5`6i6=x9oNKwtO|KTGFV+|jgzd{-|nT70or9DdqE-Q+6 zyZ_a#cMgN6WiZ5+r_!kpK$Pf^uM?#gHfHE4^)M=i#Qp@UB0L%9lsA>ERmP(dMZE=? z>X05(4~ya)jrFe1m^T&n)ryZYY6UHRZ=yKeuw)5RUy{KVbhlSjDR-YI9ScV;Bv_Ra zir@e3hl!#Hg;kv!_8f`?XEV=mG#w%&4hT>FX!@uDWC45nU#Rh{MAnbcw%GKR0F-EVjQzBb57;`zqm}f5 z$hBf{@q(DIR;(T9f%W+2+Z4wWU2oK06vMY?Xx*ftdE4=aPj?{MbyUr2uIyX49EDY{ zZ)4@=maQvSI1EjECiAW1kpPhxb@nUffKA!3mEEz{#OgDWmX8nKB8K%X)H_C+R1254 zFbtK|N@5EVf2QT=4 zi_q#C;$R$+8f$oAiBm`=2km|5E9-ggEj76A$z|N`^5yPx8M7u86lc=OzR!bFEkRY( zc;M~%TV%MheF``Vw5Q-h*jQ!}!2#&45Yv4#acEN6*N4ws0zWVsx*50cWWnKA*Lr{0 zICMaJ{Uwg917o@T{Sam+;N7jLqz7>U3ph618gs`s@7-pG*|majA#&D=HWnsF z#s~^e&cPys%Tc0EzOPncjJ1`02mF|B5{k4K?|}WAEpmV^|EDLu@6e*Hd+ZhOljkt* zXv(s%m!>g1&(gn|-}lDYoK2UZBF5eDB<0Qbj9%=Q$w9>8fD{G7R*I+zCrz;R`p!CC z2AX;KPz#eDARgBs`A28oD2J94#s5&R9o}{X-B=(Y3t(~A{pJ$Hn|>;lu-I-n1I?4U zgo}%oR1tk{!o}V_EjF{@WCcy?#1Y%;UfnSmc>PGbdBS*d3Gk?_3GBS!)!b3n(7iu` z6whKExc6JCBE8)?=jzv}3w>B+LbJr#;9=I;ew=E|et%yqm7gwOe=~05LguG$EM=wmFw`Z4 zJ5C{3f#&2I%Lrbq-}s-L*s%`n!1ufa^2QxMY7;fTrTa*c8+Lenhm1OqKCWS1+KGin zje$NcsOEoGM*_ZjO)*Xe1iKmhnjVoVMNXA1ir|;R8aZ2vA!_8{J)Y&liQEf@NEor0 zum46+W-`6z+I}}r6fAUxtJ6CgH51qCAx94OnBATk`|DJy$oxpZ(Do8@Ckb3V1IhNb$!F@PrC+HZEw6l1Bwt-H`o8#D8#4we6z=WNJf8o z_txGA^rNGO$AdQg+ITfgb&$a?P1cYWf{7Lytc2*I%K~!SJK*Fl?uF8u7*%ML*m=G$ zv5D-hDZhK5iP|@1u5OLTklDqF>u`Ppit;MbmlAH9MTp;Ap{BsRyxr~U1*a{|&_!wY zX#)n2$_m;cJ{V7#2Nyc~>9B!bo?CNg>aGBi2ijYJfuP__*$q zKxf}XfsvCuQ5!T4yT~1R@=;s*WKx5BWGs7FGx(=FCdD4Nm95APwSq<;7x)%uE2};P zk5>DgidOTF_N6`kP$@;)PRrTotSP4Gb6?u9k&%u+i;f8 zeO5gV0K$23Ek?<)hor;OSNCI>~7h z3&mbO3fQ~{Tg>@t`04!JV{D2pXgi=s6ejO8krW4y&>_39LBM8TO)jHgGM+Sv{k2^p zVp+#Rl?4~DGg2N6UD_&I)1Y1NkhGJ4mAf)z%IXMyT~_}9)a9i6aEeyaV1Z#3Yc$W5 z*_qN-UWZ+6PCd=hD-Z!5!agNpHBf>Yei5DijF{z(Mn%~~dxvxy`cB*{_4jVZzetM1 z)=YpV=Yf4&Ra+_9K}*|AwgCyFBq*-+ES0ks>=c1JKR#WaFPUpJ2P6HE>|R`Hm42c( zH&_Z(havY$!-q%u$4k-^Jy}x-EYtMb!TxyUMXs5VF zXvXo@gy4|PUg+LvFTeAKf}zf@RF%i-UkS|`Y+V&9^5n+(>s5kz=!t$$AS7vB9@Kq# z!hXRqcqVKbl8jZ$B@xk}N+koZUtB4;T{!6lOaf(C^Da4KP9FUi#KndcN(sBhl)IR1 zjTJ*azL(#EEDkeTT;!uL${VFseCza_n*tze5v5q33&BvqjaN@#JyZS()xCqmms@Z7hlQdp~%Mj(y?yU_VQLEXjUmbXQ2;n*zHv)L?!CU2noM zaj8YrgA==5d`73qa%0orSyE7EQVomATEUr)q-O9s(Nmj$bmPWg@gt@GlD2haMuBf? zSshPsqG8B~fWo}w+1GQ?jzr|*~+$lvC2X-&?{ zvC+`h!nC@M1;1CtzXf>=G=_HntF@%Bs7~v#<78-IpTGR^j}j6Xt;(wfQx)Fi2T|6z z=&-lUOBg$2WtbejO)!LWieK(FRr-Rp9-;kDkIkv%VbY>u#}Lc)V2!}QoHI08nS9r& zjLTnrnC$4ZFDHrI0!v5YqHE-b$fIO{e|2D={A3I}9W6_5bT&wH0lP`i=9txRjoWg; z>+h5}O8lvMF6tY@zP$G`&omXY$|scj9rKJyP}n^$^4HAMq{#lgR%ld~)I&G`VS5o3 zFUJg}>2l_F#g(vEHl?MXwdh-^0pXlrU#da;p>BhmZM@pa{+ZEf>gU<`xo_qdj+H`4 zHs$~Z>$kPJk0T87YRaHl+(0T-t4yZRpkY$`qz!g6($oPgSvM|r|Ikv98KKPax~o;- zSPC){=Lw=@q)#m-pj1$2_0Q0|&9Y7j?v)4voHhS1l8)gC81tmXyP8B_+`RRGs-mVs JDbnoI{{Xpk+?xOZ literal 0 HcmV?d00001 diff --git a/readme.txt b/assets/readme.txt similarity index 100% rename from readme.txt rename to assets/readme.txt diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index 7544372..5928640 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -4,15 +4,16 @@ nanoFramework.System.Text $version$ nanoFramework.System.Text - nanoFramework project contributors - nanoFramework project contributors + .NET nanoFramework project contributors + .NET nanoFramework project contributors,dotnetfoundation false - Apache-2.0 + LICENSE.md false https://github.com/nanoframework/lib-nanoFramework.System.Text https://secure.gravatar.com/avatar/97d0e092247f0716db6d4b47b7d1d1ad + images\nf-logo.png Copyright (c) .NET Foundation and Contributors This package includes the System.Text assembly for nanoFramework C# projects. @@ -29,7 +30,9 @@ This package requires a target with nanoFramework.System.Text v$nativeVersion$.< - - + + + + \ No newline at end of file From 63e71be94852ef2437957f690e6ef0ea5440dda6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Mar 2021 00:24:58 +0000 Subject: [PATCH 35/76] Update 1 nuget dependencies --- .../NFUnitTestStringBuilder.nfproj | 16 +++++++--------- Tests/NFUnitTestStringBuilder/packages.config | 2 +- nanoFramework.System.Text.nuspec | 1 - nanoFramework.System.Text.sln | 2 +- .../nanoFramework.System.Text.nfproj | 4 ++-- 5 files changed, 11 insertions(+), 14 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index 855d296..7390e28 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -37,15 +37,13 @@ True True - - ..\..\packages\nanoFramework.TestFramework.1.0.89\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.92\lib\nanoFramework.TestFramework.dll True - True - ..\..\packages\nanoFramework.TestFramework.1.0.89\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.92\lib\nanoFramework.UnitTestLauncher.exe True - True @@ -57,16 +55,16 @@ - + - Update the Import path in nfproj to the correct nanoFramework.TestFramework NuGet package folder. + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + - \ No newline at end of file + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index 8e119fd..7e0e1e8 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index 5928640..46905ff 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -30,7 +30,6 @@ This package requires a target with nanoFramework.System.Text v$nativeVersion$.< - diff --git a/nanoFramework.System.Text.sln b/nanoFramework.System.Text.sln index 9e54baf..7e6f942 100644 --- a/nanoFramework.System.Text.sln +++ b/nanoFramework.System.Text.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.31025.218 diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index f1ef4f6..1c9497f 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -79,4 +79,4 @@ - \ No newline at end of file + From 5ca0653113ffffa7488097bceb7bb627125e3c02 Mon Sep 17 00:00:00 2001 From: nfbot Date: Wed, 17 Mar 2021 00:29:10 +0000 Subject: [PATCH 36/76] Update CHANGELOG for v1.1.1 ***NO_CI*** --- CHANGELOG.md | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 807995b..4716f2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,19 @@ ## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/HEAD) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.24...HEAD) +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.29...HEAD) + +**Implemented enhancements:** + +- Adding Unit Test from .NET Microframework [\#25](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/25) + +**Documentation and other chores:** + +- Update 1 nuget dependencies [\#26](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/26) + +## [v1.1.1-preview.29](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.29) (2021-03-02) + +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.24...v1.1.1-preview.29) **Documentation and other chores:** @@ -88,15 +100,12 @@ **Documentation and other chores:** - Release release-v1.0.0 [\#11](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/11) +- Bumps nanoFramework.CoreLibrary from 1.7.3-preview.4 to 1.7.3 [\#10](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/10) ## [v1.0.0-preview.25](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.0.0-preview.25) (2020-06-11) [Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0-preview.22...v1.0.0-preview.25) -**Documentation and other chores:** - -- Bumps nanoFramework.CoreLibrary from 1.7.3-preview.4 to 1.7.3 [\#10](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/10) - ## [v1.0.0-preview.22](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.0.0-preview.22) (2020-05-31) [Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0-preview.16...v1.0.0-preview.22) From 0fa32ebf58293246bed00094f621a59b4c50c63e Mon Sep 17 00:00:00 2001 From: nfbot Date: Sun, 21 Mar 2021 04:02:31 +0000 Subject: [PATCH 37/76] Bumps nanoFramework.CoreLibrary from 1.10.1-preview.11 to 1.10.3-preview.7 --- .../NFUnitTestStringBuilder.nfproj | 7 +++---- Tests/NFUnitTestStringBuilder/packages.config | 2 +- nanoFramework.System.Text.nuspec | 2 +- .../nanoFramework.System.Text.nfproj | 14 +++++++------- nanoFramework.System.Text/packages.config | 2 +- 5 files changed, 13 insertions(+), 14 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index 7390e28..5cdab69 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -32,10 +32,9 @@ - - ..\..\packages\nanoFramework.CoreLibrary.1.10.1-preview.11\lib\mscorlib.dll + + ..\..\packages\nanoFramework.CoreLibrary.1.10.3-preview.7\lib\mscorlib.dll True - True ..\..\packages\nanoFramework.TestFramework.1.0.92\lib\nanoFramework.TestFramework.dll diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index 7e0e1e8..7dec6b0 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index 46905ff..802adb0 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -21,7 +21,7 @@ This package requires a target with nanoFramework.System.Text v$nativeVersion$.< System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index 1c9497f..fb0ac10 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -40,7 +40,7 @@ - + false @@ -58,13 +58,13 @@ - - ..\packages\nanoFramework.CoreLibrary.1.10.1-preview.11\lib\mscorlib.dll - True - + - + + ..\packages\nanoFramework.CoreLibrary.1.10.3-preview.7\lib\mscorlib.dll + True + diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index 341b863..664e874 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 5c806531d3044cf12b3d7f2658063c45259b1c22 Mon Sep 17 00:00:00 2001 From: nfbot Date: Sun, 21 Mar 2021 04:12:03 +0000 Subject: [PATCH 38/76] Update CHANGELOG for v1.1.1 ***NO_CI*** --- CHANGELOG.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4716f2e..3b5ee85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,15 @@ ## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/HEAD) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.29...HEAD) +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.33...HEAD) + +**Documentation and other chores:** + +- Bumps nanoFramework.CoreLibrary from 1.10.1-preview.11 to 1.10.3-preview.7 [\#27](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/27) + +## [v1.1.1-preview.33](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.33) (2021-03-17) + +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.29...v1.1.1-preview.33) **Implemented enhancements:** @@ -100,12 +108,15 @@ **Documentation and other chores:** - Release release-v1.0.0 [\#11](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/11) -- Bumps nanoFramework.CoreLibrary from 1.7.3-preview.4 to 1.7.3 [\#10](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/10) ## [v1.0.0-preview.25](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.0.0-preview.25) (2020-06-11) [Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0-preview.22...v1.0.0-preview.25) +**Documentation and other chores:** + +- Bumps nanoFramework.CoreLibrary from 1.7.3-preview.4 to 1.7.3 [\#10](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/10) + ## [v1.0.0-preview.22](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.0.0-preview.22) (2020-05-31) [Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0-preview.16...v1.0.0-preview.22) From 7e6530b54ca445bd45398c206fb5cf5f13dfff52 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Mar 2021 00:23:45 +0000 Subject: [PATCH 39/76] Update 1 nuget dependencies --- .../NFUnitTestStringBuilder.nfproj | 12 ++++++------ Tests/NFUnitTestStringBuilder/packages.config | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index 5cdab69..8e8f361 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -36,12 +36,12 @@ ..\..\packages\nanoFramework.CoreLibrary.1.10.3-preview.7\lib\mscorlib.dll True - - ..\..\packages\nanoFramework.TestFramework.1.0.92\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.95\lib\nanoFramework.TestFramework.dll True - ..\..\packages\nanoFramework.TestFramework.1.0.92\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.95\lib\nanoFramework.UnitTestLauncher.exe True @@ -59,11 +59,11 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index 7dec6b0..7ce6a35 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 959466b83314d4cbe6972b7f896cfceace41b15c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Mar 2021 00:14:56 +0000 Subject: [PATCH 40/76] Update 1 nuget dependencies --- .../NFUnitTestStringBuilder.nfproj | 10 +++++----- Tests/NFUnitTestStringBuilder/packages.config | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index 8e8f361..11c805d 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -36,12 +36,12 @@ ..\..\packages\nanoFramework.CoreLibrary.1.10.3-preview.7\lib\mscorlib.dll True - - ..\..\packages\nanoFramework.TestFramework.1.0.95\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.98\lib\nanoFramework.TestFramework.dll True - ..\..\packages\nanoFramework.TestFramework.1.0.95\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.98\lib\nanoFramework.UnitTestLauncher.exe True @@ -59,11 +59,11 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index 7ce6a35..5364f4b 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 9bd07c2c47e7a2b225ac9ebbdb58cdb6f8fb8be2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Thu, 25 Mar 2021 14:47:44 +0000 Subject: [PATCH 41/76] Work CI-CD ***NO_CI*** --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f61db7b..61d0246 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -30,7 +30,7 @@ jobs: buildPlatform: 'Any CPU' buildConfiguration: 'Release' nugetPackageName: 'nanoFramework.System.Text' - repoName: 'lib-nanoFramework.System.Text' + repoName: 'nanoFramework.System.Text' steps: From 1d5a77f909e1f74afac36af9ac756ca29104d34e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 Apr 2021 09:00:29 +0100 Subject: [PATCH 42/76] Update 1 nuget dependencies --- .../NFUnitTestStringBuilder.nfproj | 10 +++++----- Tests/NFUnitTestStringBuilder/packages.config | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index 11c805d..075797f 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -36,12 +36,12 @@ ..\..\packages\nanoFramework.CoreLibrary.1.10.3-preview.7\lib\mscorlib.dll True - - ..\..\packages\nanoFramework.TestFramework.1.0.98\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.101\lib\nanoFramework.TestFramework.dll True - ..\..\packages\nanoFramework.TestFramework.1.0.98\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.101\lib\nanoFramework.UnitTestLauncher.exe True @@ -59,11 +59,11 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index 5364f4b..04e3d34 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 079535d12744be095570b45935751c1ab5edbb0d Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Mon, 12 Apr 2021 20:52:37 +0100 Subject: [PATCH 43/76] Update azure-pipelines.yml ***NO_CI*** --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 61d0246..f66379c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,6 +1,6 @@ trigger: branches: - include: [master, develop, "release-*" ] + include: [main, master, develop, "release-*" ] paths: exclude: ["*.md", .gitignore] tags: From ab1067f7951f6cf7cb1bb3d37e479880dbbd8748 Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Mon, 12 Apr 2021 22:45:19 +0100 Subject: [PATCH 44/76] Update version.json ***NO_CI*** --- version.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/version.json b/version.json index 3950df0..871ce3e 100644 --- a/version.json +++ b/version.json @@ -10,6 +10,7 @@ }, "publicReleaseRefSpec": [ "^refs/heads/master$", + "^refs/heads/main$", "^refs/heads/v\\d+(?:\\.\\d+)?$" ], "cloudBuild": { @@ -21,4 +22,4 @@ "versionIncrement": "build", "firstUnstableTag": "preview" } -} \ No newline at end of file +} From 94b9161e93a5635500ea8798a959d2094b91961a Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Tue, 13 Apr 2021 00:45:55 +0100 Subject: [PATCH 45/76] Update version.json ***NO_CI*** --- version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.json b/version.json index 871ce3e..47e7396 100644 --- a/version.json +++ b/version.json @@ -9,7 +9,7 @@ "semVer": 2.0 }, "publicReleaseRefSpec": [ - "^refs/heads/master$", + "^refs/heads/develop$", "^refs/heads/main$", "^refs/heads/v\\d+(?:\\.\\d+)?$" ], From 667dacecf6dee068163962be21f5fc90f87a004b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Tue, 4 May 2021 11:21:45 +0100 Subject: [PATCH 46/76] Work CI-CD - Update VM to use VS2019. ***NO_CI*** --- azure-pipelines.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f66379c..15c7d1d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -50,7 +50,7 @@ jobs: - Build_Library pool: - vmImage: 'VS2017-Win2016' + vmImage: 'windows-2019' variables: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true @@ -69,12 +69,12 @@ jobs: inputs: gitHubToken: $(GitHubToken) repositoriesToUpdate: | - lib-nanoFramework.System.Net - lib-nanoFramework.System.Net.Http - lib-Windows.Devices.SerialCommunication - lib-Windows.Storage - lib-Windows.Storage.Streams - lib-nanoFramework.Json + nanoFramework.System.Net + nanoFramework.System.Net.Http + Windows.Devices.SerialCommunication + Windows.Storage + Windows.Storage.Streams + nanoFramework.Json paho.mqtt.m2mqtt displayName: Update dependent class libs @@ -88,7 +88,7 @@ jobs: condition: or( failed('Build_Library'), failed('Update_Dependencies')) pool: - vmImage: 'VS2017-Win2016' + vmImage: 'windows-2019' steps: - checkout: self From d2b25c7f74fd5c73d09a6dbcea5a60932bc5d895 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 5 May 2021 01:22:32 +0100 Subject: [PATCH 47/76] Update 1 nuget dependencies --- .../NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj | 2 +- Tests/NFUnitTestStringBuilder/packages.config | 2 +- nanoFramework.System.Text.nuspec | 2 +- nanoFramework.System.Text/nanoFramework.System.Text.nfproj | 6 +++--- nanoFramework.System.Text/packages.config | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index 075797f..d29556b 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -33,7 +33,7 @@ - ..\..\packages\nanoFramework.CoreLibrary.1.10.3-preview.7\lib\mscorlib.dll + ..\..\packages\nanoFramework.CoreLibrary.1.10.3-preview.20\lib\mscorlib.dll True diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index 04e3d34..b658d28 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index 802adb0..1532bc5 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -21,7 +21,7 @@ This package requires a target with nanoFramework.System.Text v$nativeVersion$.< System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index fb0ac10..dc3d543 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -40,7 +40,7 @@ - + false @@ -62,7 +62,7 @@ - ..\packages\nanoFramework.CoreLibrary.1.10.3-preview.7\lib\mscorlib.dll + ..\packages\nanoFramework.CoreLibrary.1.10.3-preview.20\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index 664e874..6486f1b 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From e8b5d3ca9564b9118706a5254a390063fe535339 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 6 May 2021 01:21:57 +0100 Subject: [PATCH 48/76] Update 1 nuget dependencies --- .../NFUnitTestStringBuilder.nfproj | 10 +++++----- Tests/NFUnitTestStringBuilder/packages.config | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index d29556b..d512d05 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -36,12 +36,12 @@ ..\..\packages\nanoFramework.CoreLibrary.1.10.3-preview.20\lib\mscorlib.dll True - - ..\..\packages\nanoFramework.TestFramework.1.0.101\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.110\lib\nanoFramework.TestFramework.dll True - ..\..\packages\nanoFramework.TestFramework.1.0.101\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.110\lib\nanoFramework.UnitTestLauncher.exe True @@ -59,11 +59,11 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index b658d28..f7ea358 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 10f55cdfd2f02bb73655a3e834bb467731271e19 Mon Sep 17 00:00:00 2001 From: nfbot Date: Thu, 13 May 2021 15:17:03 +0100 Subject: [PATCH 49/76] Bumps nanoFramework.CoreLibrary from 1.10.3-preview.20 to 1.10.4-preview.4 --- .../NFUnitTestStringBuilder.nfproj | 6 +++--- Tests/NFUnitTestStringBuilder/packages.config | 2 +- nanoFramework.System.Text.nuspec | 2 +- .../nanoFramework.System.Text.nfproj | 8 ++++---- nanoFramework.System.Text/packages.config | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index d512d05..acfbc3b 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -32,8 +32,8 @@ - - ..\..\packages\nanoFramework.CoreLibrary.1.10.3-preview.20\lib\mscorlib.dll + + ..\..\packages\nanoFramework.CoreLibrary.1.10.4-preview.4\lib\mscorlib.dll True diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index f7ea358..5662973 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index 1532bc5..cf53860 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -21,7 +21,7 @@ This package requires a target with nanoFramework.System.Text v$nativeVersion$.< System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index dc3d543..26c43be 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -40,7 +40,7 @@ - + false @@ -61,8 +61,8 @@ - - ..\packages\nanoFramework.CoreLibrary.1.10.3-preview.20\lib\mscorlib.dll + + ..\packages\nanoFramework.CoreLibrary.1.10.4-preview.4\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index 6486f1b..a5c25ad 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From a2c2d2f57744e20fb42ba875e89060178b289097 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 15 May 2021 01:05:43 +0100 Subject: [PATCH 50/76] Update 1 nuget dependencies --- .../NFUnitTestStringBuilder.nfproj | 12 ++++++------ Tests/NFUnitTestStringBuilder/packages.config | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index acfbc3b..cb3a2cc 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -36,12 +36,12 @@ ..\..\packages\nanoFramework.CoreLibrary.1.10.4-preview.4\lib\mscorlib.dll True - - ..\..\packages\nanoFramework.TestFramework.1.0.110\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.114\lib\nanoFramework.TestFramework.dll True - ..\..\packages\nanoFramework.TestFramework.1.0.110\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.114\lib\nanoFramework.UnitTestLauncher.exe True @@ -59,11 +59,11 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index 5662973..b4ed1b5 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 5ab9906e65f160a3e291d62ab2db4a38c935f12e Mon Sep 17 00:00:00 2001 From: nfbot Date: Wed, 19 May 2021 12:07:49 +0100 Subject: [PATCH 51/76] Bumps nanoFramework.CoreLibrary from 1.10.4-preview.4 to 1.10.4-preview.11 --- Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj | 4 ++-- Tests/NFUnitTestStringBuilder/packages.config | 2 +- nanoFramework.System.Text.nuspec | 2 +- nanoFramework.System.Text/nanoFramework.System.Text.nfproj | 4 ++-- nanoFramework.System.Text/packages.config | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index cb3a2cc..c2ddbd8 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -33,7 +33,7 @@ - ..\..\packages\nanoFramework.CoreLibrary.1.10.4-preview.4\lib\mscorlib.dll + ..\..\packages\nanoFramework.CoreLibrary.1.10.4-preview.11\lib\mscorlib.dll True diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index b4ed1b5..f592a9d 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index cf53860..99947d4 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -21,7 +21,7 @@ This package requires a target with nanoFramework.System.Text v$nativeVersion$.< System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index 26c43be..27252ad 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -40,7 +40,7 @@ - + false @@ -62,7 +62,7 @@ - ..\packages\nanoFramework.CoreLibrary.1.10.4-preview.4\lib\mscorlib.dll + ..\packages\nanoFramework.CoreLibrary.1.10.4-preview.11\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index a5c25ad..c4958a2 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 087dc82d284e6581bbb4245fe01b347dc13b16f4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 20 May 2021 01:05:51 +0100 Subject: [PATCH 52/76] Update 1 nuget dependencies --- .../NFUnitTestStringBuilder.nfproj | 12 ++++++------ Tests/NFUnitTestStringBuilder/packages.config | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index c2ddbd8..4ec4631 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -36,12 +36,12 @@ ..\..\packages\nanoFramework.CoreLibrary.1.10.4-preview.11\lib\mscorlib.dll True - - ..\..\packages\nanoFramework.TestFramework.1.0.114\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.117\lib\nanoFramework.TestFramework.dll True - ..\..\packages\nanoFramework.TestFramework.1.0.114\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.117\lib\nanoFramework.UnitTestLauncher.exe True @@ -59,11 +59,11 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index f592a9d..6ba702b 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 2e78d036aa8574cdde6b6e28158f59ab34a8b747 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 25 May 2021 01:06:29 +0100 Subject: [PATCH 53/76] Update 1 nuget dependencies --- .../NFUnitTestStringBuilder.nfproj | 10 +++++----- Tests/NFUnitTestStringBuilder/packages.config | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index 4ec4631..7cd574e 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -36,12 +36,12 @@ ..\..\packages\nanoFramework.CoreLibrary.1.10.4-preview.11\lib\mscorlib.dll True - - ..\..\packages\nanoFramework.TestFramework.1.0.117\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.118\lib\nanoFramework.TestFramework.dll True - ..\..\packages\nanoFramework.TestFramework.1.0.117\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.118\lib\nanoFramework.UnitTestLauncher.exe True @@ -59,11 +59,11 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index 6ba702b..49169ac 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 671a65ec04410e5c502df7cf123064c845cb5fe3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Tue, 25 May 2021 09:15:49 +0100 Subject: [PATCH 54/76] Work CI-CD - Update HTTP and Net repo names. - Update build triggers. ***NO_CI*** --- azure-pipelines.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 15c7d1d..7c124f3 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,8 +1,8 @@ trigger: branches: - include: [main, master, develop, "release-*" ] + include: [main, develop, "release-*" ] paths: - exclude: ["*.md", .gitignore] + exclude: [README.md, LICENSE.md, NuGet.Config, .github_changelog_generator, .gitignore] tags: include: ["v*"] @@ -69,8 +69,8 @@ jobs: inputs: gitHubToken: $(GitHubToken) repositoriesToUpdate: | - nanoFramework.System.Net - nanoFramework.System.Net.Http + System.Net + System.Net.Http Windows.Devices.SerialCommunication Windows.Storage Windows.Storage.Streams From 5df4094067a256edd635260a8c615eb438cf082d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 26 May 2021 01:09:55 +0100 Subject: [PATCH 55/76] Update 1 nuget dependencies --- .../NFUnitTestStringBuilder.nfproj | 10 +++++----- Tests/NFUnitTestStringBuilder/packages.config | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index 7cd574e..9fa8657 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -36,12 +36,12 @@ ..\..\packages\nanoFramework.CoreLibrary.1.10.4-preview.11\lib\mscorlib.dll True - - ..\..\packages\nanoFramework.TestFramework.1.0.118\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.121\lib\nanoFramework.TestFramework.dll True - ..\..\packages\nanoFramework.TestFramework.1.0.118\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.121\lib\nanoFramework.UnitTestLauncher.exe True @@ -59,11 +59,11 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index 49169ac..5610cd1 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From ed2b8cd8295e994568a2d460728cc7480403f6c8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 29 May 2021 09:23:26 +0100 Subject: [PATCH 56/76] [create-pull-request] automated change (#45) --- .../NFUnitTestStringBuilder.nfproj | 10 +++++----- Tests/NFUnitTestStringBuilder/packages.config | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index 9fa8657..da9c941 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -36,12 +36,12 @@ ..\..\packages\nanoFramework.CoreLibrary.1.10.4-preview.11\lib\mscorlib.dll True - - ..\..\packages\nanoFramework.TestFramework.1.0.121\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.122\lib\nanoFramework.TestFramework.dll True - ..\..\packages\nanoFramework.TestFramework.1.0.121\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.122\lib\nanoFramework.UnitTestLauncher.exe True @@ -59,11 +59,11 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index 5610cd1..23d26b0 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From c919a8e9901845c69d1201c30dd165b0e6896a5c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 30 May 2021 01:17:06 +0100 Subject: [PATCH 57/76] Update 1 nuget dependencies --- .../NFUnitTestStringBuilder.nfproj | 4 ++-- Tests/NFUnitTestStringBuilder/packages.config | 2 +- nanoFramework.System.Text.nuspec | 2 +- .../nanoFramework.System.Text.nfproj | 8 ++++---- nanoFramework.System.Text/packages.config | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index da9c941..7e6d8b9 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -32,8 +32,8 @@ - - ..\..\packages\nanoFramework.CoreLibrary.1.10.4-preview.11\lib\mscorlib.dll + + ..\..\packages\nanoFramework.CoreLibrary.1.10.5-alpha.145.6\lib\mscorlib.dll True diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index 23d26b0..e6c3472 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index 99947d4..91f2ee4 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -21,7 +21,7 @@ This package requires a target with nanoFramework.System.Text v$nativeVersion$.< System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index 27252ad..804e6b1 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -40,7 +40,7 @@ - + false @@ -61,8 +61,8 @@ - - ..\packages\nanoFramework.CoreLibrary.1.10.4-preview.11\lib\mscorlib.dll + + ..\packages\nanoFramework.CoreLibrary.1.10.5-alpha.145.6\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index c4958a2..071a607 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 2251be373abea87b824e5c35b41728d9fe61843e Mon Sep 17 00:00:00 2001 From: nfbot Date: Mon, 31 May 2021 19:42:31 +0100 Subject: [PATCH 58/76] Update 2 NuGet dependencies --- .../NFUnitTestStringBuilder.nfproj | 14 +++++++------- Tests/NFUnitTestStringBuilder/packages.config | 4 ++-- nanoFramework.System.Text.nuspec | 2 +- nanoFramework.System.Text.sln | 2 +- .../nanoFramework.System.Text.nfproj | 6 +++--- nanoFramework.System.Text/packages.config | 2 +- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index 7e6d8b9..05c9057 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -33,15 +33,15 @@ - ..\..\packages\nanoFramework.CoreLibrary.1.10.5-alpha.145.6\lib\mscorlib.dll + ..\..\packages\nanoFramework.CoreLibrary.1.10.5-preview.4\lib\mscorlib.dll True - - ..\..\packages\nanoFramework.TestFramework.1.0.122\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.127\lib\nanoFramework.TestFramework.dll True - ..\..\packages\nanoFramework.TestFramework.1.0.122\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.127\lib\nanoFramework.UnitTestLauncher.exe True @@ -59,11 +59,11 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index e6c3472..eb1016d 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - - + + \ No newline at end of file diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index 91f2ee4..57c04ce 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -21,7 +21,7 @@ This package requires a target with nanoFramework.System.Text v$nativeVersion$.< System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text.sln b/nanoFramework.System.Text.sln index 7e6f942..9e54baf 100644 --- a/nanoFramework.System.Text.sln +++ b/nanoFramework.System.Text.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.31025.218 diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index 804e6b1..608d5f6 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -40,7 +40,7 @@ - + false @@ -62,7 +62,7 @@ - ..\packages\nanoFramework.CoreLibrary.1.10.5-alpha.145.6\lib\mscorlib.dll + ..\packages\nanoFramework.CoreLibrary.1.10.5-preview.4\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index 071a607..1fc28f4 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From e8ad6c3f7e7fcbcb5e5aaaaabdb9f08950cb717d Mon Sep 17 00:00:00 2001 From: josesimoes Date: Tue, 1 Jun 2021 11:33:02 +0100 Subject: [PATCH 59/76] Work CI-CD - Replace NuGet installer with template. - Various fixes in nuspecs. - Swap feed order in NuGet config. ***NO_CI*** --- .github_changelog_generator | 2 +- NuGet.Config | 2 +- README.md | 10 +++++----- azure-pipelines.yml | 13 +++++-------- nanoFramework.System.Text.nuspec | 7 +++---- 5 files changed, 15 insertions(+), 19 deletions(-) diff --git a/.github_changelog_generator b/.github_changelog_generator index b67564c..e609bbc 100644 --- a/.github_changelog_generator +++ b/.github_changelog_generator @@ -1,5 +1,5 @@ user=nanoframework -project=lib-nanoFramework.System.Text +project=System.Text issues=true add_issues_wo_labels=false add_pr_wo_labels=false diff --git a/NuGet.Config b/NuGet.Config index ef0bacf..0521fe6 100644 --- a/NuGet.Config +++ b/NuGet.Config @@ -1,7 +1,7 @@ - + diff --git a/README.md b/README.md index 0853e8e..91d8098 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_lib-nanoFramework.System.Text&metric=alert_status)](https://sonarcloud.io/dashboard?id=nanoframework_lib-nanoFramework.System.Text) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_lib-nanoFramework.System.Text&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=nanoframework_lib-nanoFramework.System.Text) [![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) [![NuGet](https://img.shields.io/nuget/dt/nanoFramework.System.Text.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.Text/) [![#yourfirstpr](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://github.com/nanoframework/Home/blob/master/CONTRIBUTING.md) +[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_lib-nanoFramework.System.Text&metric=alert_status)](https://sonarcloud.io/dashboard?id=nanoframework_lib-nanoFramework.System.Text) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_lib-nanoFramework.System.Text&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=nanoframework_lib-nanoFramework.System.Text) [![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) [![NuGet](https://img.shields.io/nuget/dt/nanoFramework.System.Text.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.Text/) [![#yourfirstpr](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://github.com/nanoframework/Home/blob/main/CONTRIBUTING.md) [![Discord](https://img.shields.io/discord/478725473862549535.svg?logo=discord&logoColor=white&label=Discord&color=7289DA)](https://discord.gg/gCyBu8T) -![nanoFramework logo](https://github.com/nanoframework/Home/blob/master/resources/logo/nanoFramework-repo-logo.png) +![nanoFramework logo](https://github.com/nanoframework/Home/blob/main/resources/logo/nanoFramework-repo-logo.png) ----- @@ -11,8 +11,8 @@ | Component | Build Status | NuGet Package | |:-|---|---| -| nanoFramework.System.Text | [![Build Status](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_apis/build/status/nanoframework.lib-nanoFramework.System.Text?branchName=master)](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_build/latest?definitionId=57&branchName=master) | [![NuGet](https://img.shields.io/nuget/v/nanoFramework.System.Text.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.Text/) | -| nanoFramework.System.Text (preview) | [![Build Status](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_apis/build/status/nanoframework.lib-nanoFramework.System.Text?branchName=develop)](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_build/latest?definitionId=57&branchName=develop) | [![](https://badgen.net/badge/NuGet/preview/D7B023?icon=https://simpleicons.now.sh/azuredevops/fff)](https://dev.azure.com/nanoframework/feed/_packaging?_a=package&feed=sandbox&package=nanoFramework.nanoFramework.System.Text&protocolType=NuGet&view=overview) | +| nanoFramework.System.Text | [![Build Status](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_apis/build/status/nanoframework.lib-nanoFramework.System.Text?branchName=main)](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_build/latest?definitionId=57&branchName=main) | [![NuGet](https://img.shields.io/nuget/v/nanoFramework.System.Text.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.Text/) | +| nanoFramework.System.Text (preview) | [![Build Status](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_apis/build/status/nanoframework.lib-nanoFramework.System.Text?branchName=develop)](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_build/latest?definitionId=57&branchName=develop) | [![NuGet](https://img.shields.io/nuget/v/nanoFramework.System.Text.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.Text/) | ## Feedback and documentation @@ -22,7 +22,7 @@ Join our Discord community [here](https://discord.gg/gCyBu8T). ## Credits -The list of contributors to this project can be found at [CONTRIBUTORS](https://github.com/nanoframework/Home/blob/master/CONTRIBUTORS.md). +The list of contributors to this project can be found at [CONTRIBUTORS](https://github.com/nanoframework/Home/blob/main/CONTRIBUTORS.md). ## License diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7c124f3..05d7046 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -25,12 +25,11 @@ jobs: vmImage: 'windows-2019' variables: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true + DOTNET_NOLOGO: true solution: '**/*.sln' buildPlatform: 'Any CPU' buildConfiguration: 'Release' nugetPackageName: 'nanoFramework.System.Text' - repoName: 'nanoFramework.System.Text' steps: @@ -53,16 +52,13 @@ jobs: vmImage: 'windows-2019' variables: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true + DOTNET_NOLOGO: true steps: - checkout: none - - task: NuGetToolInstaller@0 - inputs: - versionSpec: '5.4.0' - displayName: 'Install specific version of NuGet' + - template: azure-pipelines-templates/install-nuget.yml@templates # update dependencies - task: UpdatenFDependencies@1 @@ -81,14 +77,15 @@ jobs: ################################## # report build failure to Discord - job: Report_Build_Failure + condition: or( failed('Build_Library'), failed('Update_Dependencies')) dependsOn: - Build_Library - Update_Dependencies - condition: or( failed('Build_Library'), failed('Update_Dependencies')) pool: vmImage: 'windows-2019' + steps: - checkout: self diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index 57c04ce..2105d4b 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -11,13 +11,12 @@ false - https://github.com/nanoframework/lib-nanoFramework.System.Text + https://github.com/nanoframework/System.Text https://secure.gravatar.com/avatar/97d0e092247f0716db6d4b47b7d1d1ad images\nf-logo.png - + Copyright (c) .NET Foundation and Contributors - This package includes the System.Text assembly for nanoFramework C# projects. -This package requires a target with nanoFramework.System.Text v$nativeVersion$. + This package includes the System.Text assembly for nanoFramework C# projects. This package requires a target with System.Text v$nativeVersion$. System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text From 7121336db04b9061a4f174d9c39a3493c0e1a82f Mon Sep 17 00:00:00 2001 From: josesimoes Date: Tue, 1 Jun 2021 14:26:12 +0100 Subject: [PATCH 60/76] Update build badges in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 91d8098..a04ef54 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ | Component | Build Status | NuGet Package | |:-|---|---| -| nanoFramework.System.Text | [![Build Status](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_apis/build/status/nanoframework.lib-nanoFramework.System.Text?branchName=main)](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_build/latest?definitionId=57&branchName=main) | [![NuGet](https://img.shields.io/nuget/v/nanoFramework.System.Text.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.Text/) | -| nanoFramework.System.Text (preview) | [![Build Status](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_apis/build/status/nanoframework.lib-nanoFramework.System.Text?branchName=develop)](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_build/latest?definitionId=57&branchName=develop) | [![NuGet](https://img.shields.io/nuget/v/nanoFramework.System.Text.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.Text/) | +| nanoFramework.System.Text | [![Build Status](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_apis/build/status/System.Text?repoName=nanoframework%2FSystem.Text&branchName=main)](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_build/latest?definitionId=57&repoName=nanoframework%2FSystem.Text&branchName=main) | [![NuGet](https://img.shields.io/nuget/v/nanoFramework.System.Text.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.Text/) | +| nanoFramework.System.Text (preview) | [![Build Status](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_apis/build/status/System.Text?repoName=nanoframework%2FSystem.Text&branchName=develop)](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_build/latest?definitionId=57&repoName=nanoframework%2FSystem.Text&branchName=develop) | [![NuGet](https://img.shields.io/nuget/v/nanoFramework.System.Text.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.Text/) | ## Feedback and documentation From 9cc378d2e47a783cd3efe92b24e68b4cc0b98b03 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 6 Jun 2021 12:59:33 +0100 Subject: [PATCH 61/76] Update 1 nuget dependencies (#52) Bumps nanoFramework.CoreLibrary from 1.10.5-preview.4 to 1.10.5-preview.10 --- .../NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj | 4 ++-- Tests/NFUnitTestStringBuilder/packages.config | 2 +- nanoFramework.System.Text.nuspec | 5 +++-- nanoFramework.System.Text.sln | 2 +- nanoFramework.System.Text/nanoFramework.System.Text.nfproj | 6 +++--- nanoFramework.System.Text/packages.config | 2 +- 6 files changed, 11 insertions(+), 10 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index 05c9057..f176d21 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -33,7 +33,7 @@ - ..\..\packages\nanoFramework.CoreLibrary.1.10.5-preview.4\lib\mscorlib.dll + ..\..\packages\nanoFramework.CoreLibrary.1.10.5-preview.10\lib\mscorlib.dll True diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index eb1016d..a79505d 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index 2105d4b..d9b91a6 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -16,11 +16,12 @@ images\nf-logo.png Copyright (c) .NET Foundation and Contributors - This package includes the System.Text assembly for nanoFramework C# projects. This package requires a target with System.Text v$nativeVersion$. + This package includes the System.Text assembly for nanoFramework C# projects. +This package requires a target with System.Text v$nativeVersion$. System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text.sln b/nanoFramework.System.Text.sln index 9e54baf..7e6f942 100644 --- a/nanoFramework.System.Text.sln +++ b/nanoFramework.System.Text.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.31025.218 diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index 608d5f6..32f9383 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -40,7 +40,7 @@ - + false @@ -62,7 +62,7 @@ - ..\packages\nanoFramework.CoreLibrary.1.10.5-preview.4\lib\mscorlib.dll + ..\packages\nanoFramework.CoreLibrary.1.10.5-preview.10\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index 1fc28f4..e0a3575 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 93a8a7c69a5a7dc76b10a9a06c54e6f613d5f8ce Mon Sep 17 00:00:00 2001 From: nfbot Date: Sun, 6 Jun 2021 12:04:06 +0000 Subject: [PATCH 62/76] Update CHANGELOG for v1.1.1 ***NO_CI*** --- CHANGELOG.md | 217 ++++++++++++++++++++++++++++++++++----------------- 1 file changed, 147 insertions(+), 70 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b5ee85..0ef8208 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,185 +1,262 @@ # Changelog -## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/HEAD) +## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/System.Text/tree/HEAD) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.33...HEAD) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.57...HEAD) **Documentation and other chores:** -- Bumps nanoFramework.CoreLibrary from 1.10.1-preview.11 to 1.10.3-preview.7 [\#27](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/27) +- Update 1 nuget dependencies [\#52](https://github.com/nanoframework/System.Text/pull/52) -## [v1.1.1-preview.33](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.33) (2021-03-17) +## [v1.1.1-preview.57](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.57) (2021-06-01) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.29...v1.1.1-preview.33) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.51...v1.1.1-preview.57) -**Implemented enhancements:** +**Documentation and other chores:** + +- Update 2 NuGet dependencies [\#47](https://github.com/nanoframework/System.Text/pull/47) +- Update 1 nuget dependencies [\#46](https://github.com/nanoframework/System.Text/pull/46) +- Update 1 nuget dependencies [\#45](https://github.com/nanoframework/System.Text/pull/45) +- Update 1 nuget dependencies [\#44](https://github.com/nanoframework/System.Text/pull/44) + +## [v1.1.1-preview.51](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.51) (2021-05-25) + +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.50...v1.1.1-preview.51) + +**Documentation and other chores:** + +- Update 1 nuget dependencies [\#43](https://github.com/nanoframework/System.Text/pull/43) + +## [v1.1.1-preview.50](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.50) (2021-05-20) + +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.49...v1.1.1-preview.50) + +**Documentation and other chores:** + +- Update 1 nuget dependencies [\#42](https://github.com/nanoframework/System.Text/pull/42) + +## [v1.1.1-preview.49](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.49) (2021-05-19) + +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.48...v1.1.1-preview.49) + +**Documentation and other chores:** + +- Bumps nanoFramework.CoreLibrary from 1.10.4-preview.4 to 1.10.4-preview.11 [\#41](https://github.com/nanoframework/System.Text/pull/41) + +## [v1.1.1-preview.48](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.48) (2021-05-15) + +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.47...v1.1.1-preview.48) + +**Documentation and other chores:** + +- Update 1 nuget dependencies [\#40](https://github.com/nanoframework/System.Text/pull/40) -- Adding Unit Test from .NET Microframework [\#25](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/25) +## [v1.1.1-preview.47](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.47) (2021-05-13) + +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.46...v1.1.1-preview.47) + +**Documentation and other chores:** + +- Bumps nanoFramework.CoreLibrary from 1.10.3-preview.20 to 1.10.4-preview.4 [\#39](https://github.com/nanoframework/System.Text/pull/39) + +## [v1.1.1-preview.46](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.46) (2021-05-06) + +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.45...v1.1.1-preview.46) **Documentation and other chores:** -- Update 1 nuget dependencies [\#26](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/26) +- Update 1 nuget dependencies [\#38](https://github.com/nanoframework/System.Text/pull/38) -## [v1.1.1-preview.29](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.29) (2021-03-02) +## [v1.1.1-preview.45](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.45) (2021-05-05) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.24...v1.1.1-preview.29) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.40...v1.1.1-preview.45) **Documentation and other chores:** -- Bumps nanoFramework.CoreLibrary from 1.10.1-preview.9 to 1.10.1-preview.11 [\#24](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/24) -- Update 2 nuget dependencies [\#23](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/23) +- Update 1 nuget dependencies [\#37](https://github.com/nanoframework/System.Text/pull/37) -## [v1.1.1-preview.24](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.24) (2021-01-06) +## [v1.1.1-preview.40](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.40) (2021-04-09) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.22...v1.1.1-preview.24) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.35...v1.1.1-preview.40) **Documentation and other chores:** -- Bumps nanoFramework.CoreLibrary from 1.10.1-preview.7 to 1.10.1-preview.9 [\#22](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/22) +- Update 1 nuget dependencies [\#36](https://github.com/nanoframework/System.Text/pull/36) +- Update 1 nuget dependencies [\#29](https://github.com/nanoframework/System.Text/pull/29) +- Update 1 nuget dependencies [\#28](https://github.com/nanoframework/System.Text/pull/28) -## [v1.1.1-preview.22](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.22) (2020-12-29) +## [v1.1.1-preview.35](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.35) (2021-03-21) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.19...v1.1.1-preview.22) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.33...v1.1.1-preview.35) **Documentation and other chores:** -- Bumps nanoFramework.CoreLibrary from 1.10.1-preview.6 to 1.10.1-preview.7 [\#21](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/21) +- Bumps nanoFramework.CoreLibrary from 1.10.1-preview.11 to 1.10.3-preview.7 [\#27](https://github.com/nanoframework/System.Text/pull/27) -## [v1.1.1-preview.19](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.19) (2020-12-28) +## [v1.1.1-preview.33](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.33) (2021-03-17) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.17...v1.1.1-preview.19) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.29...v1.1.1-preview.33) + +**Implemented enhancements:** + +- Adding Unit Test from .NET Microframework [\#25](https://github.com/nanoframework/System.Text/pull/25) **Documentation and other chores:** -- Bumps nanoFramework.CoreLibrary from 1.10.0-preview.4 to 1.10.1-preview.6 [\#20](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/20) +- Update 1 nuget dependencies [\#26](https://github.com/nanoframework/System.Text/pull/26) -## [v1.1.1-preview.17](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.17) (2020-12-07) +## [v1.1.1-preview.29](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.29) (2021-03-02) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.14...v1.1.1-preview.17) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.24...v1.1.1-preview.29) **Documentation and other chores:** -- Bumps nanoFramework.CoreLibrary from 1.9.1-preview.6 to 1.10.0-preview.4 [\#19](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/19) +- Bumps nanoFramework.CoreLibrary from 1.10.1-preview.9 to 1.10.1-preview.11 [\#24](https://github.com/nanoframework/System.Text/pull/24) +- Update 2 nuget dependencies [\#23](https://github.com/nanoframework/System.Text/pull/23) -## [v1.1.1-preview.14](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.14) (2020-10-21) +## [v1.1.1-preview.24](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.24) (2021-01-06) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.12...v1.1.1-preview.14) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.22...v1.1.1-preview.24) **Documentation and other chores:** -- Update dependencies [\#17](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/17) +- Bumps nanoFramework.CoreLibrary from 1.10.1-preview.7 to 1.10.1-preview.9 [\#22](https://github.com/nanoframework/System.Text/pull/22) -## [v1.1.1-preview.12](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.12) (2020-10-20) +## [v1.1.1-preview.22](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.22) (2020-12-29) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.10...v1.1.1-preview.12) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.19...v1.1.1-preview.22) **Documentation and other chores:** -- Bumps nanoFramework.CoreLibrary from 1.9.0-preview.5 to 1.9.1-preview.4 [\#15](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/15) +- Bumps nanoFramework.CoreLibrary from 1.10.1-preview.6 to 1.10.1-preview.7 [\#21](https://github.com/nanoframework/System.Text/pull/21) -## [v1.1.1-preview.10](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.10) (2020-10-01) +## [v1.1.1-preview.19](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.19) (2020-12-28) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.1-preview.2...v1.1.1-preview.10) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.17...v1.1.1-preview.19) **Documentation and other chores:** -- Update dependencies [\#14](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/14) +- Bumps nanoFramework.CoreLibrary from 1.10.0-preview.4 to 1.10.1-preview.6 [\#20](https://github.com/nanoframework/System.Text/pull/20) -## [v1.1.1-preview.2](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.1-preview.2) (2020-09-19) +## [v1.1.1-preview.17](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.17) (2020-12-07) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.1.0...v1.1.1-preview.2) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.14...v1.1.1-preview.17) **Documentation and other chores:** -- Update dependencies [\#13](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/13) +- Bumps nanoFramework.CoreLibrary from 1.9.1-preview.6 to 1.10.0-preview.4 [\#19](https://github.com/nanoframework/System.Text/pull/19) -## [v1.1.0](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.1.0) (2020-06-16) +## [v1.1.1-preview.14](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.14) (2020-10-21) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0...v1.1.0) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.12...v1.1.1-preview.14) **Documentation and other chores:** -- Release release-v1.1.0 [\#12](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/12) +- Update dependencies [\#17](https://github.com/nanoframework/System.Text/pull/17) -## [v1.0.0](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.0.0) (2020-06-12) +## [v1.1.1-preview.12](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.12) (2020-10-20) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0-preview.25...v1.0.0) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.10...v1.1.1-preview.12) **Documentation and other chores:** -- Release release-v1.0.0 [\#11](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/11) +- Bumps nanoFramework.CoreLibrary from 1.9.0-preview.5 to 1.9.1-preview.4 [\#15](https://github.com/nanoframework/System.Text/pull/15) + +## [v1.1.1-preview.10](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.10) (2020-10-01) + +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.2...v1.1.1-preview.10) + +**Documentation and other chores:** + +- Update dependencies [\#14](https://github.com/nanoframework/System.Text/pull/14) + +## [v1.1.1-preview.2](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.2) (2020-09-19) + +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.0...v1.1.1-preview.2) + +**Documentation and other chores:** + +- Update dependencies [\#13](https://github.com/nanoframework/System.Text/pull/13) + +## [v1.1.0](https://github.com/nanoframework/System.Text/tree/v1.1.0) (2020-06-16) + +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.0.0...v1.1.0) + +## [v1.0.0](https://github.com/nanoframework/System.Text/tree/v1.0.0) (2020-06-12) + +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.0.0-preview.25...v1.0.0) -## [v1.0.0-preview.25](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.0.0-preview.25) (2020-06-11) +## [v1.0.0-preview.25](https://github.com/nanoframework/System.Text/tree/v1.0.0-preview.25) (2020-06-11) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0-preview.22...v1.0.0-preview.25) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.0.0-preview.22...v1.0.0-preview.25) **Documentation and other chores:** -- Bumps nanoFramework.CoreLibrary from 1.7.3-preview.4 to 1.7.3 [\#10](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/10) +- Bumps nanoFramework.CoreLibrary from 1.7.3-preview.4 to 1.7.3 [\#10](https://github.com/nanoframework/System.Text/pull/10) -## [v1.0.0-preview.22](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.0.0-preview.22) (2020-05-31) +## [v1.0.0-preview.22](https://github.com/nanoframework/System.Text/tree/v1.0.0-preview.22) (2020-05-31) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0-preview.16...v1.0.0-preview.22) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.0.0-preview.16...v1.0.0-preview.22) **Documentation and other chores:** -- Bumps nanoFramework.CoreLibrary from 1.7.2-preview.7 to 1.7.3-preview.4 [\#9](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/9) +- Bumps nanoFramework.CoreLibrary from 1.7.2-preview.7 to 1.7.3-preview.4 [\#9](https://github.com/nanoframework/System.Text/pull/9) -## [v1.0.0-preview.16](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.0.0-preview.16) (2020-05-08) +## [v1.0.0-preview.16](https://github.com/nanoframework/System.Text/tree/v1.0.0-preview.16) (2020-05-08) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0-preview.15...v1.0.0-preview.16) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.0.0-preview.15...v1.0.0-preview.16) **Documentation and other chores:** -- Bumps nanoFramework.CoreLibrary from 1.7.2-preview.6 to 1.7.2-preview.7 [\#8](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/8) +- Bumps nanoFramework.CoreLibrary from 1.7.2-preview.6 to 1.7.2-preview.7 [\#8](https://github.com/nanoframework/System.Text/pull/8) -## [v1.0.0-preview.15](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.0.0-preview.15) (2020-05-08) +## [v1.0.0-preview.15](https://github.com/nanoframework/System.Text/tree/v1.0.0-preview.15) (2020-05-08) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0-preview.14...v1.0.0-preview.15) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.0.0-preview.14...v1.0.0-preview.15) **Documentation and other chores:** -- Bumps nanoFramework.CoreLibrary from 1.7.2-preview.5 to 1.7.2-preview.6 [\#7](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/7) +- Bumps nanoFramework.CoreLibrary from 1.7.2-preview.5 to 1.7.2-preview.6 [\#7](https://github.com/nanoframework/System.Text/pull/7) -## [v1.0.0-preview.14](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.0.0-preview.14) (2020-04-27) +## [v1.0.0-preview.14](https://github.com/nanoframework/System.Text/tree/v1.0.0-preview.14) (2020-04-27) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0-preview.13...v1.0.0-preview.14) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.0.0-preview.13...v1.0.0-preview.14) **Documentation and other chores:** -- Bumps nanoFramework.CoreLibrary from 1.7.2-preview.4 to 1.7.2-preview.5 [\#6](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/6) +- Bumps nanoFramework.CoreLibrary from 1.7.2-preview.4 to 1.7.2-preview.5 [\#6](https://github.com/nanoframework/System.Text/pull/6) -## [v1.0.0-preview.13](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.0.0-preview.13) (2020-04-16) +## [v1.0.0-preview.13](https://github.com/nanoframework/System.Text/tree/v1.0.0-preview.13) (2020-04-16) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0-preview.11...v1.0.0-preview.13) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.0.0-preview.11...v1.0.0-preview.13) **Documentation and other chores:** -- Bumps nanoFramework.CoreLibrary from 1.7.1-preview.4 to 1.7.2-preview.4 [\#5](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/5) +- Bumps nanoFramework.CoreLibrary from 1.7.1-preview.4 to 1.7.2-preview.4 [\#5](https://github.com/nanoframework/System.Text/pull/5) -## [v1.0.0-preview.11](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.0.0-preview.11) (2020-04-14) +## [v1.0.0-preview.11](https://github.com/nanoframework/System.Text/tree/v1.0.0-preview.11) (2020-04-14) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0-preview.8...v1.0.0-preview.11) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.0.0-preview.8...v1.0.0-preview.11) **Documentation and other chores:** -- Bumps nanoFramework.CoreLibrary from 1.7.0-preview.12 to 1.7.1-preview.4 [\#4](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/4) +- Bumps nanoFramework.CoreLibrary from 1.7.0-preview.12 to 1.7.1-preview.4 [\#4](https://github.com/nanoframework/System.Text/pull/4) -## [v1.0.0-preview.8](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.0.0-preview.8) (2020-03-10) +## [v1.0.0-preview.8](https://github.com/nanoframework/System.Text/tree/v1.0.0-preview.8) (2020-03-10) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0-preview.7...v1.0.0-preview.8) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.0.0-preview.7...v1.0.0-preview.8) -## [v1.0.0-preview.7](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.0.0-preview.7) (2020-03-10) +## [v1.0.0-preview.7](https://github.com/nanoframework/System.Text/tree/v1.0.0-preview.7) (2020-03-10) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/v1.0.0-preview.1...v1.0.0-preview.7) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.0.0-preview.1...v1.0.0-preview.7) **Documentation and other chores:** -- Bumps nanoFramework.CoreLibrary from 1.6.0-preview.1 to 1.7.0-preview.12 [\#3](https://github.com/nanoframework/lib-nanoFramework.System.Text/pull/3) +- Bumps nanoFramework.CoreLibrary from 1.6.0-preview.1 to 1.7.0-preview.12 [\#3](https://github.com/nanoframework/System.Text/pull/3) -## [v1.0.0-preview.1](https://github.com/nanoframework/lib-nanoFramework.System.Text/tree/v1.0.0-preview.1) (2019-11-14) +## [v1.0.0-preview.1](https://github.com/nanoframework/System.Text/tree/v1.0.0-preview.1) (2019-11-14) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.System.Text/compare/c0babc37636fd6509a17c67de79c06299cde628f...v1.0.0-preview.1) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/c0babc37636fd6509a17c67de79c06299cde628f...v1.0.0-preview.1) From 98a9c512f0949f59c9e6c27a008f746d7018b748 Mon Sep 17 00:00:00 2001 From: nfbot Date: Mon, 7 Jun 2021 19:52:22 +0100 Subject: [PATCH 63/76] Update 2 NuGet dependencies --- .../NFUnitTestStringBuilder.nfproj | 14 +++++++------- Tests/NFUnitTestStringBuilder/packages.config | 4 ++-- nanoFramework.System.Text.nuspec | 2 +- nanoFramework.System.Text.sln | 2 +- .../nanoFramework.System.Text.nfproj | 6 +++--- nanoFramework.System.Text/packages.config | 2 +- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index f176d21..b0e68a2 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -33,15 +33,15 @@ - ..\..\packages\nanoFramework.CoreLibrary.1.10.5-preview.10\lib\mscorlib.dll + ..\..\packages\nanoFramework.CoreLibrary.1.10.5-preview.13\lib\mscorlib.dll True - - ..\..\packages\nanoFramework.TestFramework.1.0.127\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.132\lib\nanoFramework.TestFramework.dll True - ..\..\packages\nanoFramework.TestFramework.1.0.127\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.132\lib\nanoFramework.UnitTestLauncher.exe True @@ -59,11 +59,11 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index a79505d..4da7512 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - - + + \ No newline at end of file diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index d9b91a6..e585e3f 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -21,7 +21,7 @@ This package requires a target with System.Text v$nativeVersion$. System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text.sln b/nanoFramework.System.Text.sln index 7e6f942..9e54baf 100644 --- a/nanoFramework.System.Text.sln +++ b/nanoFramework.System.Text.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.31025.218 diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index 32f9383..b61b1cb 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -40,7 +40,7 @@ - + false @@ -62,7 +62,7 @@ - ..\packages\nanoFramework.CoreLibrary.1.10.5-preview.10\lib\mscorlib.dll + ..\packages\nanoFramework.CoreLibrary.1.10.5-preview.13\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index e0a3575..617a92d 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From d6430915f675bc2768459760b6ab016f9671617e Mon Sep 17 00:00:00 2001 From: nfbot Date: Mon, 7 Jun 2021 18:59:03 +0000 Subject: [PATCH 64/76] Update CHANGELOG for v1.1.1 ***NO_CI*** --- CHANGELOG.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ef8208..7c3a277 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,15 @@ ## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/System.Text/tree/HEAD) -[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.57...HEAD) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.59...HEAD) + +**Documentation and other chores:** + +- Update 2 NuGet dependencies [\#53](https://github.com/nanoframework/System.Text/pull/53) + +## [v1.1.1-preview.59](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.59) (2021-06-06) + +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.57...v1.1.1-preview.59) **Documentation and other chores:** From 83c16b9af30229084c11bf0c0515cac7ee747454 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 9 Jun 2021 01:08:23 +0100 Subject: [PATCH 65/76] Update 1 nuget dependencies \r\n***NO_CI*** --- .../NFUnitTestStringBuilder.nfproj | 12 ++++++------ Tests/NFUnitTestStringBuilder/packages.config | 2 +- nanoFramework.System.Text.sln | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index b0e68a2..9b9ee1b 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -36,12 +36,12 @@ ..\..\packages\nanoFramework.CoreLibrary.1.10.5-preview.13\lib\mscorlib.dll True - - ..\..\packages\nanoFramework.TestFramework.1.0.132\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.136\lib\nanoFramework.TestFramework.dll True - ..\..\packages\nanoFramework.TestFramework.1.0.132\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.136\lib\nanoFramework.UnitTestLauncher.exe True @@ -59,11 +59,11 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index 4da7512..d995cfa 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/nanoFramework.System.Text.sln b/nanoFramework.System.Text.sln index 9e54baf..7e6f942 100644 --- a/nanoFramework.System.Text.sln +++ b/nanoFramework.System.Text.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.31025.218 From 5232dd2245c0748567c17cb601a150fe776fa6c5 Mon Sep 17 00:00:00 2001 From: nfbot Date: Sat, 19 Jun 2021 08:50:53 +0100 Subject: [PATCH 66/76] Bumps nanoFramework.CoreLibrary from 1.10.5-preview.13 to 1.10.5-preview.18 --- Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj | 4 ++-- Tests/NFUnitTestStringBuilder/packages.config | 2 +- nanoFramework.System.Text.nuspec | 2 +- nanoFramework.System.Text.sln | 2 +- nanoFramework.System.Text/nanoFramework.System.Text.nfproj | 4 ++-- nanoFramework.System.Text/packages.config | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index 9b9ee1b..d7f0a94 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -33,7 +33,7 @@ - ..\..\packages\nanoFramework.CoreLibrary.1.10.5-preview.13\lib\mscorlib.dll + ..\..\packages\nanoFramework.CoreLibrary.1.10.5-preview.18\lib\mscorlib.dll True diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index d995cfa..b016953 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index e585e3f..8252e3a 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -21,7 +21,7 @@ This package requires a target with System.Text v$nativeVersion$. System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text.sln b/nanoFramework.System.Text.sln index 7e6f942..9e54baf 100644 --- a/nanoFramework.System.Text.sln +++ b/nanoFramework.System.Text.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.31025.218 diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index b61b1cb..582c364 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -40,7 +40,7 @@ - + false @@ -62,7 +62,7 @@ - ..\packages\nanoFramework.CoreLibrary.1.10.5-preview.13\lib\mscorlib.dll + ..\packages\nanoFramework.CoreLibrary.1.10.5-preview.18\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index 617a92d..d3cc616 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 227102f20646f0579c8ae98aa23155dd168db1ae Mon Sep 17 00:00:00 2001 From: nfbot Date: Sat, 19 Jun 2021 07:58:25 +0000 Subject: [PATCH 67/76] Update CHANGELOG for v1.1.1 ***NO_CI*** --- CHANGELOG.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c3a277..a4103c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,16 @@ ## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/System.Text/tree/HEAD) -[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.59...HEAD) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.61...HEAD) + +**Documentation and other chores:** + +- Bumps nanoFramework.CoreLibrary from 1.10.5-preview.13 to 1.10.5-preview.18 [\#55](https://github.com/nanoframework/System.Text/pull/55) +- Update 1 nuget dependencies [\#54](https://github.com/nanoframework/System.Text/pull/54) + +## [v1.1.1-preview.61](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.61) (2021-06-07) + +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.59...v1.1.1-preview.61) **Documentation and other chores:** From 1f742809c4fbc7a010d62ac19f838ad4df694848 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 20 Jun 2021 01:09:02 +0100 Subject: [PATCH 68/76] Update 1 nuget dependencies \r\n***NO_CI*** --- .../NFUnitTestStringBuilder.nfproj | 12 ++++++------ Tests/NFUnitTestStringBuilder/packages.config | 2 +- nanoFramework.System.Text.sln | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index d7f0a94..5e83f5f 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -36,12 +36,12 @@ ..\..\packages\nanoFramework.CoreLibrary.1.10.5-preview.18\lib\mscorlib.dll True - - ..\..\packages\nanoFramework.TestFramework.1.0.136\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.138\lib\nanoFramework.TestFramework.dll True - ..\..\packages\nanoFramework.TestFramework.1.0.136\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.138\lib\nanoFramework.UnitTestLauncher.exe True @@ -59,11 +59,11 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index b016953..bdfc909 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/nanoFramework.System.Text.sln b/nanoFramework.System.Text.sln index 9e54baf..7e6f942 100644 --- a/nanoFramework.System.Text.sln +++ b/nanoFramework.System.Text.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.31025.218 From 10dcf88c2b7f8837aca617091bccf7419d409b51 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 29 Jun 2021 01:08:08 +0100 Subject: [PATCH 69/76] Update 1 nuget dependencies \r\n***NO_CI*** --- .../NFUnitTestStringBuilder.nfproj | 10 +++++----- Tests/NFUnitTestStringBuilder/packages.config | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index 5e83f5f..00e9a34 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -36,12 +36,12 @@ ..\..\packages\nanoFramework.CoreLibrary.1.10.5-preview.18\lib\mscorlib.dll True - - ..\..\packages\nanoFramework.TestFramework.1.0.138\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.141\lib\nanoFramework.TestFramework.dll True - ..\..\packages\nanoFramework.TestFramework.1.0.138\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.141\lib\nanoFramework.UnitTestLauncher.exe True @@ -59,11 +59,11 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index bdfc909..b0c2d2f 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From ac70d7df65d4ea9f3b37f7f472a50b0204d30823 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Jul 2021 01:07:23 +0100 Subject: [PATCH 70/76] Update 1 nuget dependencies \r\n***NO_CI*** --- .../NFUnitTestStringBuilder.nfproj | 10 +++++----- Tests/NFUnitTestStringBuilder/packages.config | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index 00e9a34..235d52e 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -36,12 +36,12 @@ ..\..\packages\nanoFramework.CoreLibrary.1.10.5-preview.18\lib\mscorlib.dll True - - ..\..\packages\nanoFramework.TestFramework.1.0.141\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.143\lib\nanoFramework.TestFramework.dll True - ..\..\packages\nanoFramework.TestFramework.1.0.141\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.143\lib\nanoFramework.UnitTestLauncher.exe True @@ -59,11 +59,11 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index b0c2d2f..ce80c31 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 58bd4cb477fe36364da4b4b966a56da8a5f9702f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 8 Jul 2021 01:13:50 +0100 Subject: [PATCH 71/76] Update 1 nuget dependencies \r\n***NO_CI*** --- .../NFUnitTestStringBuilder.nfproj | 10 +++++----- Tests/NFUnitTestStringBuilder/packages.config | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index 235d52e..2e2bd82 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -36,12 +36,12 @@ ..\..\packages\nanoFramework.CoreLibrary.1.10.5-preview.18\lib\mscorlib.dll True - - ..\..\packages\nanoFramework.TestFramework.1.0.143\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.146\lib\nanoFramework.TestFramework.dll True - ..\..\packages\nanoFramework.TestFramework.1.0.143\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.146\lib\nanoFramework.UnitTestLauncher.exe True @@ -59,11 +59,11 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index ce80c31..a83e097 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From c68e7c487440b554be5939bd6e992e618c6c14de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 Jul 2021 01:08:58 +0100 Subject: [PATCH 72/76] Update 1 nuget dependencies --- .../NFUnitTestStringBuilder.nfproj | 4 ++-- Tests/NFUnitTestStringBuilder/packages.config | 2 +- nanoFramework.System.Text.nuspec | 2 +- .../nanoFramework.System.Text.nfproj | 8 ++++---- nanoFramework.System.Text/packages.config | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index 2e2bd82..8af89e9 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -32,8 +32,8 @@ - - ..\..\packages\nanoFramework.CoreLibrary.1.10.5-preview.18\lib\mscorlib.dll + + ..\..\packages\nanoFramework.CoreLibrary.1.10.5\lib\mscorlib.dll True diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index a83e097..56bc756 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/nanoFramework.System.Text.nuspec b/nanoFramework.System.Text.nuspec index 8252e3a..ca345da 100644 --- a/nanoFramework.System.Text.nuspec +++ b/nanoFramework.System.Text.nuspec @@ -21,7 +21,7 @@ This package requires a target with System.Text v$nativeVersion$. System.Text assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.System.Text - + diff --git a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj index 582c364..4c13414 100644 --- a/nanoFramework.System.Text/nanoFramework.System.Text.nfproj +++ b/nanoFramework.System.Text/nanoFramework.System.Text.nfproj @@ -1,4 +1,4 @@ - + $(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\ @@ -40,7 +40,7 @@ - + false @@ -61,8 +61,8 @@ - - ..\packages\nanoFramework.CoreLibrary.1.10.5-preview.18\lib\mscorlib.dll + + ..\packages\nanoFramework.CoreLibrary.1.10.5\lib\mscorlib.dll True diff --git a/nanoFramework.System.Text/packages.config b/nanoFramework.System.Text/packages.config index d3cc616..32546da 100644 --- a/nanoFramework.System.Text/packages.config +++ b/nanoFramework.System.Text/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 8750ebf58e825e869e99943d39af69cd75feb551 Mon Sep 17 00:00:00 2001 From: nfbot Date: Wed, 14 Jul 2021 00:22:44 +0000 Subject: [PATCH 73/76] Update CHANGELOG for v1.1.1 ***NO_CI*** --- CHANGELOG.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4103c6..0eedeb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,19 @@ ## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/System.Text/tree/HEAD) -[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.61...HEAD) +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.64...HEAD) + +**Documentation and other chores:** + +- Update 1 nuget dependencies [\#61](https://github.com/nanoframework/System.Text/pull/61) +- Update 1 nuget dependencies [\#60](https://github.com/nanoframework/System.Text/pull/60) +- Update 1 nuget dependencies [\#58](https://github.com/nanoframework/System.Text/pull/58) +- Update 1 nuget dependencies [\#57](https://github.com/nanoframework/System.Text/pull/57) +- Update 1 nuget dependencies [\#56](https://github.com/nanoframework/System.Text/pull/56) + +## [v1.1.1-preview.64](https://github.com/nanoframework/System.Text/tree/v1.1.1-preview.64) (2021-06-19) + +[Full Changelog](https://github.com/nanoframework/System.Text/compare/v1.1.1-preview.61...v1.1.1-preview.64) **Documentation and other chores:** From 5cefb4f4a51703fb879ebd1e0321e35d73950dfb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 15 Jul 2021 01:07:42 +0100 Subject: [PATCH 74/76] Update 1 nuget dependencies \r\n***NO_CI*** --- .../NFUnitTestStringBuilder.nfproj | 10 +++++----- Tests/NFUnitTestStringBuilder/packages.config | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj index 8af89e9..2823a82 100644 --- a/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj +++ b/Tests/NFUnitTestStringBuilder/NFUnitTestStringBuilder.nfproj @@ -36,12 +36,12 @@ ..\..\packages\nanoFramework.CoreLibrary.1.10.5\lib\mscorlib.dll True - - ..\..\packages\nanoFramework.TestFramework.1.0.146\lib\nanoFramework.TestFramework.dll + + ..\..\packages\nanoFramework.TestFramework.1.0.147\lib\nanoFramework.TestFramework.dll True - ..\..\packages\nanoFramework.TestFramework.1.0.146\lib\nanoFramework.UnitTestLauncher.exe + ..\..\packages\nanoFramework.TestFramework.1.0.147\lib\nanoFramework.UnitTestLauncher.exe True @@ -59,11 +59,11 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}. - + diff --git a/Tests/NFUnitTestStringBuilder/packages.config b/Tests/NFUnitTestStringBuilder/packages.config index 56bc756..be34a29 100644 --- a/Tests/NFUnitTestStringBuilder/packages.config +++ b/Tests/NFUnitTestStringBuilder/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 0989da3abe8a766ed1006f361fd7bceac7bb5f51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Thu, 15 Jul 2021 16:56:47 +0100 Subject: [PATCH 75/76] Update build badges ***NO_CI*** --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a04ef54..035ebb4 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ | Component | Build Status | NuGet Package | |:-|---|---| -| nanoFramework.System.Text | [![Build Status](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_apis/build/status/System.Text?repoName=nanoframework%2FSystem.Text&branchName=main)](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_build/latest?definitionId=57&repoName=nanoframework%2FSystem.Text&branchName=main) | [![NuGet](https://img.shields.io/nuget/v/nanoFramework.System.Text.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.Text/) | -| nanoFramework.System.Text (preview) | [![Build Status](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_apis/build/status/System.Text?repoName=nanoframework%2FSystem.Text&branchName=develop)](https://dev.azure.com/nanoframework/nanoFramework.System.Text/_build/latest?definitionId=57&repoName=nanoframework%2FSystem.Text&branchName=develop) | [![NuGet](https://img.shields.io/nuget/v/nanoFramework.System.Text.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.Text/) | +| nanoFramework.System.Text | [![Build Status](https://dev.azure.com/nanoframework/System.Text/_apis/build/status/System.Text?repoName=nanoframework%2FSystem.Text&branchName=main)](https://dev.azure.com/nanoframework/System.Text/_build/latest?definitionId=57&repoName=nanoframework%2FSystem.Text&branchName=main) | [![NuGet](https://img.shields.io/nuget/v/nanoFramework.System.Text.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.Text/) | +| nanoFramework.System.Text (preview) | [![Build Status](https://dev.azure.com/nanoframework/System.Text/_apis/build/status/System.Text?repoName=nanoframework%2FSystem.Text&branchName=develop)](https://dev.azure.com/nanoframework/System.Text/_build/latest?definitionId=57&repoName=nanoframework%2FSystem.Text&branchName=develop) | [![NuGet](https://img.shields.io/nuget/v/nanoFramework.System.Text.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.Text/) | ## Feedback and documentation From b2c206c0cd54c77a993efcaa5829f2e9ca84b935 Mon Sep 17 00:00:00 2001 From: nfbot Date: Thu, 15 Jul 2021 16:19:49 +0000 Subject: [PATCH 76/76] Set version to '1.1.1' --- version.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.json b/version.json index 47e7396..b2fd61a 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "1.1.1-preview.{height}", + "version": "1.1.1", "assemblyVersion": { "precision": "revision" }, @@ -22,4 +22,4 @@ "versionIncrement": "build", "firstUnstableTag": "preview" } -} +} \ No newline at end of file