From ee7e8c0ce944ee749b976ee3b6f5a034c8e5a2c2 Mon Sep 17 00:00:00 2001 From: Ben Kelly Date: Mon, 10 Jun 2024 10:51:00 -0400 Subject: [PATCH 1/9] update project to netstandard2.1 --- dotnet/src/StackExchange.StacksIcons.csproj | 85 ++++++++++----------- 1 file changed, 39 insertions(+), 46 deletions(-) diff --git a/dotnet/src/StackExchange.StacksIcons.csproj b/dotnet/src/StackExchange.StacksIcons.csproj index 3cb4b7a9..b11ffadd 100644 --- a/dotnet/src/StackExchange.StacksIcons.csproj +++ b/dotnet/src/StackExchange.StacksIcons.csproj @@ -1,47 +1,40 @@  - - latest - netstandard2.0 - 6.0.2 - StackExchange.StacksIcons - StackExchange.StacksIcons - enable - - - - Stack Overflow's shared icon set - https://github.com/StackExchange/Stacks-Icons - MIT - https://github.com/StackExchange/Stacks-Icons.git - git - README.md - - - - True - - - - - - - - - - - - - - - - - <_Parameter1>StackExchange.StacksIcons.Test - - - - - - - - - + + latest + netstandard2.1 + 6.0.2 + StackExchange.StacksIcons + StackExchange.StacksIcons + enable + + + Stack Overflow's shared icon set + https://github.com/StackExchange/Stacks-Icons + MIT + https://github.com/StackExchange/Stacks-Icons.git + git + README.md + + + True + + + + + + + + + + + + + + <_Parameter1>StackExchange.StacksIcons.Test + + + + + + + \ No newline at end of file From f06c3efef2a0973e0e9a79671bc2c0061bf42f2e Mon Sep 17 00:00:00 2001 From: Ben Kelly Date: Mon, 10 Jun 2024 10:51:19 -0400 Subject: [PATCH 2/9] update tests to net8.0 --- dotnet/test/StackExchange.StacksIcons.Test.csproj | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/dotnet/test/StackExchange.StacksIcons.Test.csproj b/dotnet/test/StackExchange.StacksIcons.Test.csproj index b7df5639..50fd11de 100644 --- a/dotnet/test/StackExchange.StacksIcons.Test.csproj +++ b/dotnet/test/StackExchange.StacksIcons.Test.csproj @@ -1,13 +1,10 @@ - - net6.0 + net8.0 enable enable - false - @@ -20,9 +17,7 @@ all - - - + \ No newline at end of file From dc2caf8940f7f24c2593a8505608a6314cd1414d Mon Sep 17 00:00:00 2001 From: Ben Kelly Date: Mon, 10 Jun 2024 11:12:18 -0400 Subject: [PATCH 3/9] update from netstandard to net8.0 and include a FrameworkReference --- dotnet/src/StackExchange.StacksIcons.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotnet/src/StackExchange.StacksIcons.csproj b/dotnet/src/StackExchange.StacksIcons.csproj index b11ffadd..011ad4b0 100644 --- a/dotnet/src/StackExchange.StacksIcons.csproj +++ b/dotnet/src/StackExchange.StacksIcons.csproj @@ -1,7 +1,7 @@  latest - netstandard2.1 + net8.0 6.0.2 StackExchange.StacksIcons StackExchange.StacksIcons @@ -34,7 +34,7 @@ - + \ No newline at end of file From 85dc9963a56f03b3e0467edd3a949b80c821fdb8 Mon Sep 17 00:00:00 2001 From: Ben Kelly Date: Mon, 10 Jun 2024 11:16:58 -0400 Subject: [PATCH 4/9] bump version number --- dotnet/src/StackExchange.StacksIcons.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/src/StackExchange.StacksIcons.csproj b/dotnet/src/StackExchange.StacksIcons.csproj index 011ad4b0..8a51f82b 100644 --- a/dotnet/src/StackExchange.StacksIcons.csproj +++ b/dotnet/src/StackExchange.StacksIcons.csproj @@ -2,7 +2,7 @@ latest net8.0 - 6.0.2 + 7.0.0 StackExchange.StacksIcons StackExchange.StacksIcons enable From 1f26d9990d05b3ee509466dd535f52dd40936540 Mon Sep 17 00:00:00 2001 From: Ben Kelly Date: Mon, 10 Jun 2024 13:14:02 -0400 Subject: [PATCH 5/9] support both net6 and net8 --- dotnet/src/StackExchange.StacksIcons.csproj | 52 ++++++++++++--------- 1 file changed, 29 insertions(+), 23 deletions(-) diff --git a/dotnet/src/StackExchange.StacksIcons.csproj b/dotnet/src/StackExchange.StacksIcons.csproj index 8a51f82b..bc709dc2 100644 --- a/dotnet/src/StackExchange.StacksIcons.csproj +++ b/dotnet/src/StackExchange.StacksIcons.csproj @@ -1,40 +1,46 @@  - latest - net8.0 - 7.0.0 - StackExchange.StacksIcons - StackExchange.StacksIcons - enable + latest + net6.0;net8.0 + 7.0.0 + StackExchange.StacksIcons + StackExchange.StacksIcons + enable + - Stack Overflow's shared icon set - https://github.com/StackExchange/Stacks-Icons - MIT - https://github.com/StackExchange/Stacks-Icons.git - git - README.md + Stack Overflow's shared icon set + https://github.com/StackExchange/Stacks-Icons + MIT + https://github.com/StackExchange/Stacks-Icons.git + git + README.md + - True + True + - - + + + - - - + + + + - - - <_Parameter1>StackExchange.StacksIcons.Test - + + + <_Parameter1>StackExchange.StacksIcons.Test + + - + \ No newline at end of file From 5462d00d5b4e7d40b75f9cc90c5f992dda6b672d Mon Sep 17 00:00:00 2001 From: Ben Kelly Date: Mon, 10 Jun 2024 13:15:33 -0400 Subject: [PATCH 6/9] update to target both net6 and net8 --- dotnet/src/StackExchange.StacksIcons.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/src/StackExchange.StacksIcons.csproj b/dotnet/src/StackExchange.StacksIcons.csproj index bc709dc2..23234800 100644 --- a/dotnet/src/StackExchange.StacksIcons.csproj +++ b/dotnet/src/StackExchange.StacksIcons.csproj @@ -1,7 +1,7 @@  latest - net6.0;net8.0 + net6.0;net8.0 7.0.0 StackExchange.StacksIcons StackExchange.StacksIcons From 612bfec2edc0d98612ab9b5623049c65d370585a Mon Sep 17 00:00:00 2001 From: Ben Kelly Date: Mon, 10 Jun 2024 13:16:16 -0400 Subject: [PATCH 7/9] whitespace --- dotnet/src/StackExchange.StacksIcons.csproj | 76 ++++++++++----------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/dotnet/src/StackExchange.StacksIcons.csproj b/dotnet/src/StackExchange.StacksIcons.csproj index 23234800..78d9b10c 100644 --- a/dotnet/src/StackExchange.StacksIcons.csproj +++ b/dotnet/src/StackExchange.StacksIcons.csproj @@ -1,46 +1,46 @@  - - latest - net6.0;net8.0 - 7.0.0 - StackExchange.StacksIcons - StackExchange.StacksIcons - enable - + + latest + net6.0;net8.0 + 7.0.0 + StackExchange.StacksIcons + StackExchange.StacksIcons + enable + - - Stack Overflow's shared icon set - https://github.com/StackExchange/Stacks-Icons - MIT - https://github.com/StackExchange/Stacks-Icons.git - git - README.md - + + Stack Overflow's shared icon set + https://github.com/StackExchange/Stacks-Icons + MIT + https://github.com/StackExchange/Stacks-Icons.git + git + README.md + - - True - + + True + - - - - + + + + - - - - - + + + + + - - - - <_Parameter1>StackExchange.StacksIcons.Test - - + + + + <_Parameter1>StackExchange.StacksIcons.Test + + - - - - + + + + \ No newline at end of file From d69f5e820d29ecf85f0c89e63a821b5bd1797653 Mon Sep 17 00:00:00 2001 From: Ben Kelly Date: Mon, 10 Jun 2024 13:17:28 -0400 Subject: [PATCH 8/9] whitespace --- dotnet/test/StackExchange.StacksIcons.Test.csproj | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dotnet/test/StackExchange.StacksIcons.Test.csproj b/dotnet/test/StackExchange.StacksIcons.Test.csproj index 50fd11de..7a3422bd 100644 --- a/dotnet/test/StackExchange.StacksIcons.Test.csproj +++ b/dotnet/test/StackExchange.StacksIcons.Test.csproj @@ -1,10 +1,13 @@ + net8.0 enable enable + false + @@ -17,7 +20,9 @@ all + + \ No newline at end of file From 9eaff87d4245ba98aa6e33e63d304bc0db532963 Mon Sep 17 00:00:00 2001 From: Ben Kelly Date: Mon, 10 Jun 2024 13:17:50 -0400 Subject: [PATCH 9/9] whitespace --- dotnet/src/StackExchange.StacksIcons.csproj | 2 +- dotnet/test/StackExchange.StacksIcons.Test.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dotnet/src/StackExchange.StacksIcons.csproj b/dotnet/src/StackExchange.StacksIcons.csproj index 78d9b10c..bc68a155 100644 --- a/dotnet/src/StackExchange.StacksIcons.csproj +++ b/dotnet/src/StackExchange.StacksIcons.csproj @@ -43,4 +43,4 @@ - \ No newline at end of file + diff --git a/dotnet/test/StackExchange.StacksIcons.Test.csproj b/dotnet/test/StackExchange.StacksIcons.Test.csproj index 7a3422bd..399feb6f 100644 --- a/dotnet/test/StackExchange.StacksIcons.Test.csproj +++ b/dotnet/test/StackExchange.StacksIcons.Test.csproj @@ -25,4 +25,4 @@ - \ No newline at end of file +