From 5cf3498373fd944fa27ee2433cb4f9b4194918ad Mon Sep 17 00:00:00 2001 From: Atif Aziz Date: Wed, 18 Sep 2024 19:58:50 +0200 Subject: [PATCH 1/4] Update .NET SDK to 8.0.400, including dependencies --- MoreLinq.Test.Aot/MoreLinq.Test.Aot.csproj | 16 ++++++++-------- MoreLinq.Test.Aot/ToDataTableTest.cs | 2 +- MoreLinq.Test/MoreLinq.Test.csproj | 12 ++++++------ MoreLinq/MoreLinq.csproj | 2 +- bld/ExtensionsGenerator/.editorconfig | 2 ++ .../MoreLinq.ExtensionsGenerator.csproj | 2 +- global.json | 2 +- 7 files changed, 20 insertions(+), 18 deletions(-) create mode 100644 bld/ExtensionsGenerator/.editorconfig diff --git a/MoreLinq.Test.Aot/MoreLinq.Test.Aot.csproj b/MoreLinq.Test.Aot/MoreLinq.Test.Aot.csproj index 9453f8dc7..219cc362d 100644 --- a/MoreLinq.Test.Aot/MoreLinq.Test.Aot.csproj +++ b/MoreLinq.Test.Aot/MoreLinq.Test.Aot.csproj @@ -8,14 +8,14 @@ - - - - - - - - + + + + + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/MoreLinq.Test.Aot/ToDataTableTest.cs b/MoreLinq.Test.Aot/ToDataTableTest.cs index 163c76598..c0be620f1 100644 --- a/MoreLinq.Test.Aot/ToDataTableTest.cs +++ b/MoreLinq.Test.Aot/ToDataTableTest.cs @@ -15,7 +15,7 @@ // limitations under the License. #endregion -namespace MoreLinq.Test +namespace MoreLinq.Test.Aot { using System; using System.Collections; diff --git a/MoreLinq.Test/MoreLinq.Test.csproj b/MoreLinq.Test/MoreLinq.Test.csproj index 5defc11f4..5e6a4cdce 100644 --- a/MoreLinq.Test/MoreLinq.Test.csproj +++ b/MoreLinq.Test/MoreLinq.Test.csproj @@ -26,20 +26,20 @@ runtime; build; native; contentfiles; analyzers all - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + - - + + diff --git a/MoreLinq/MoreLinq.csproj b/MoreLinq/MoreLinq.csproj index 8264eee51..7f347418a 100644 --- a/MoreLinq/MoreLinq.csproj +++ b/MoreLinq/MoreLinq.csproj @@ -150,7 +150,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/bld/ExtensionsGenerator/.editorconfig b/bld/ExtensionsGenerator/.editorconfig new file mode 100644 index 000000000..72716eada --- /dev/null +++ b/bld/ExtensionsGenerator/.editorconfig @@ -0,0 +1,2 @@ +[ProgramArguments.cs] +dotnet_analyzer_diagnostic.category-Style.severity = suggestion diff --git a/bld/ExtensionsGenerator/MoreLinq.ExtensionsGenerator.csproj b/bld/ExtensionsGenerator/MoreLinq.ExtensionsGenerator.csproj index a8c8964b0..665931e3e 100644 --- a/bld/ExtensionsGenerator/MoreLinq.ExtensionsGenerator.csproj +++ b/bld/ExtensionsGenerator/MoreLinq.ExtensionsGenerator.csproj @@ -6,7 +6,7 @@ - + diff --git a/global.json b/global.json index d031a7632..db09cbbe9 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.200", + "version": "8.0.400", "rollForward": "latestPatch" } } From d40a1ff335fe8339fc1ae9c90fcb15415d8741dd Mon Sep 17 00:00:00 2001 From: Atif Aziz Date: Wed, 18 Sep 2024 20:29:37 +0200 Subject: [PATCH 2/4] Bump version --- MoreLinq/MoreLinq.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MoreLinq/MoreLinq.csproj b/MoreLinq/MoreLinq.csproj index 7f347418a..3fbaa25bd 100644 --- a/MoreLinq/MoreLinq.csproj +++ b/MoreLinq/MoreLinq.csproj @@ -119,7 +119,7 @@ $([System.Text.RegularExpressions.Regex]::Replace($(Copyright), `\s+`, ` `).Trim()) MoreLINQ en-US - 4.3.0 + 4.3.1 MoreLINQ Developers. netstandard2.0;netstandard2.1;net6.0;net8.0 portable From 5a15aaabced41f2d751f3717a757081d51669fc7 Mon Sep 17 00:00:00 2001 From: Atif Aziz Date: Wed, 18 Sep 2024 21:55:12 +0200 Subject: [PATCH 3/4] Update all tools to their latest versions --- .config/dotnet-tools.json | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 890982194..cb5fca77b 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,28 +3,32 @@ "isRoot": true, "tools": { "dotnet-t4": { - "version": "2.3.0", + "version": "3.0.0", "commands": [ "t4" - ] + ], + "rollForward": false }, "dotnet-reportgenerator-globaltool": { - "version": "5.1.11", + "version": "5.3.9", "commands": [ "reportgenerator" - ] + ], + "rollForward": false }, "meziantou.framework.nugetpackagevalidation.tool": { - "version": "1.0.14", + "version": "1.0.16", "commands": [ "meziantou.validate-nuget-package" - ] + ], + "rollForward": false }, "powershell": { - "version": "7.4.0", + "version": "7.4.5", "commands": [ "pwsh" - ] + ], + "rollForward": false } } } From 6a4ad06380712b41f735d99f56c3d83ff1e21945 Mon Sep 17 00:00:00 2001 From: Atif Aziz Date: Thu, 19 Sep 2024 16:08:26 +0200 Subject: [PATCH 4/4] Embed untracked sources --- MoreLinq/MoreLinq.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/MoreLinq/MoreLinq.csproj b/MoreLinq/MoreLinq.csproj index 3fbaa25bd..1ec1d5123 100644 --- a/MoreLinq/MoreLinq.csproj +++ b/MoreLinq/MoreLinq.csproj @@ -126,6 +126,7 @@ true MoreLinq Library + true true key.snk true