From e0c9dbea3f46016dd496c0a6769fd6248e89cc0b Mon Sep 17 00:00:00 2001 From: Vlada Nevyhosteny Date: Thu, 17 Aug 2023 21:19:01 +0200 Subject: [PATCH 1/2] chore: update target to .NET standard 2.1 - tests to .NET 7.0 --- ButterCMS.Tests/ButterCMS.Tests.csproj | 10 +++++----- ButterCMS.Tests/packages.config | 13 ------------- ButterCMS.sln | 4 ++-- ButterCMS/ButterCMS.csproj | 9 ++++----- ButterCMS/packages.config | 5 ----- README.md | 2 +- 6 files changed, 12 insertions(+), 31 deletions(-) delete mode 100644 ButterCMS.Tests/packages.config delete mode 100644 ButterCMS/packages.config diff --git a/ButterCMS.Tests/ButterCMS.Tests.csproj b/ButterCMS.Tests/ButterCMS.Tests.csproj index 2e7f774..9977c0c 100644 --- a/ButterCMS.Tests/ButterCMS.Tests.csproj +++ b/ButterCMS.Tests/ButterCMS.Tests.csproj @@ -1,13 +1,13 @@  - net461 + net7.0 - - - - + + + + diff --git a/ButterCMS.Tests/packages.config b/ButterCMS.Tests/packages.config deleted file mode 100644 index 476cc90..0000000 --- a/ButterCMS.Tests/packages.config +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/ButterCMS.sln b/ButterCMS.sln index e95e8bf..11aac66 100644 --- a/ButterCMS.sln +++ b/ButterCMS.sln @@ -1,11 +1,11 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 14 VisualStudioVersion = 14.0.24720.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ButterCMS", "ButterCMS\ButterCMS.csproj", "{50FCE935-0E01-404B-87BE-0D075008EDCD}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ButterCMS.Tests", "ButterCMS.Tests\ButterCMS.Tests.csproj", "{5ADAB9E1-1D98-4E71-8775-9CFF6D8895A9}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ButterCMS.Tests", "ButterCMS.Tests\ButterCMS.Tests.csproj", "{5ADAB9E1-1D98-4E71-8775-9CFF6D8895A9}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/ButterCMS/ButterCMS.csproj b/ButterCMS/ButterCMS.csproj index f40204a..2073a51 100644 --- a/ButterCMS/ButterCMS.csproj +++ b/ButterCMS/ButterCMS.csproj @@ -1,6 +1,6 @@  - net45;net451;net452;net46;net461;net462;netstandard1.3;netstandard2.0; + netstandard2.1 2.0 @@ -10,10 +10,6 @@ API Client for ButterCMS; including both synchronous and asynchronous API endpoint methods. Copyright (c) 2020 ButterCMS - - - - Json.NET HAVE_COM_ATTRIBUTES; @@ -28,4 +24,7 @@ https://avatars0.githubusercontent.com/u/16144259 Name is now included in pages + + + \ No newline at end of file diff --git a/ButterCMS/packages.config b/ButterCMS/packages.config deleted file mode 100644 index 90c9dcc..0000000 --- a/ButterCMS/packages.config +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/README.md b/README.md index 2ecc2ad..2602583 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # buttercms-csharp -.NET Library for ButterCMS API. +.NET Standard (2.1) Library for ButterCMS API. ## Documentation From 63695f617e88cdf41f2b805e88c9b79c501f37c1 Mon Sep 17 00:00:00 2001 From: Vlada Nevyhosteny Date: Thu, 31 Aug 2023 12:57:03 +0200 Subject: [PATCH 2/2] chore: bump version to 2.0.0 --- ButterCMS/ButterCMS.csproj | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ButterCMS/ButterCMS.csproj b/ButterCMS/ButterCMS.csproj index 2073a51..3dc4bbb 100644 --- a/ButterCMS/ButterCMS.csproj +++ b/ButterCMS/ButterCMS.csproj @@ -4,8 +4,8 @@ 2.0 - 1.4.1 - 1.4.1 + 2.0.0 + 2.0.0 Brandon Nicoll; ButterCMS API Client for ButterCMS; including both synchronous and asynchronous API endpoint methods. Copyright (c) 2020 ButterCMS diff --git a/README.md b/README.md index 2602583..6f8c494 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Or by adding the package manually to the project file ```xml - + ```