From 24019208572668f06987978566ed66a00c58d17f Mon Sep 17 00:00:00 2001 From: martincostello Date: Tue, 13 Feb 2024 22:53:35 +0000 Subject: [PATCH 01/14] Update to .NET 9 preview 1 Update to preview 1 of .NET 9. --- .vsconfig | 2 +- Directory.Packages.props | 2 +- README.md | 2 +- build.ps1 | 4 ---- global.json | 2 +- .../MartinCostello.Logging.XUnit.Tests.csproj | 2 +- tests/SampleApp/SampleApp.csproj | 2 +- 7 files changed, 6 insertions(+), 10 deletions(-) mode change 100755 => 100644 build.ps1 diff --git a/.vsconfig b/.vsconfig index a991ed17..8114a325 100644 --- a/.vsconfig +++ b/.vsconfig @@ -3,7 +3,7 @@ "components": [ "Microsoft.VisualStudio.Component.CoreEditor", "Microsoft.VisualStudio.Workload.CoreEditor", - "Microsoft.NetCore.Component.Runtime.8.0", + "Microsoft.NetCore.Component.Runtime.9.0", "Microsoft.NetCore.Component.SDK", "Microsoft.VisualStudio.Component.Roslyn.Compiler", "Microsoft.VisualStudio.Component.Roslyn.LanguageServices" diff --git a/Directory.Packages.props b/Directory.Packages.props index 08c0b492..6df262de 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -6,7 +6,7 @@ - + diff --git a/README.md b/README.md index e799c202..45654e04 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ This project is licensed under the [Apache 2.0](http://www.apache.org/licenses/L ## Building and Testing -Compiling the library yourself requires Git and the [.NET SDK](https://www.microsoft.com/net/download/core "Download the .NET SDK") to be installed (version `8.0.100` or later). +Compiling the library yourself requires Git and the [.NET SDK](https://www.microsoft.com/net/download/core "Download the .NET SDK") to be installed (version `9.0.100` or later). To build and test the library locally from a terminal/command-line, run one of the following set of commands: diff --git a/build.ps1 b/build.ps1 old mode 100755 new mode 100644 index 1b75cfca..ffb7bca0 --- a/build.ps1 +++ b/build.ps1 @@ -7,10 +7,6 @@ param( [Parameter(Mandatory = $false)][switch] $SkipTests ) -if ($null -eq $env:MSBUILDTERMINALLOGGER) { - $env:MSBUILDTERMINALLOGGER = "auto" -} - $ErrorActionPreference = "Stop" $InformationPreference = "Continue" $ProgressPreference = "SilentlyContinue" diff --git a/global.json b/global.json index b962d273..b207f0ea 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.404", + "version": "9.0.100-preview.1.24101.2", "allowPrerelease": false, "rollForward": "latestMajor" } diff --git a/tests/Logging.XUnit.Tests/MartinCostello.Logging.XUnit.Tests.csproj b/tests/Logging.XUnit.Tests/MartinCostello.Logging.XUnit.Tests.csproj index f3aabe15..9d7cfe66 100644 --- a/tests/Logging.XUnit.Tests/MartinCostello.Logging.XUnit.Tests.csproj +++ b/tests/Logging.XUnit.Tests/MartinCostello.Logging.XUnit.Tests.csproj @@ -7,7 +7,7 @@ true MartinCostello.Logging.XUnit $(Description) - net8.0 + net9.0 diff --git a/tests/SampleApp/SampleApp.csproj b/tests/SampleApp/SampleApp.csproj index fe4c341b..d1406cd9 100644 --- a/tests/SampleApp/SampleApp.csproj +++ b/tests/SampleApp/SampleApp.csproj @@ -2,6 +2,6 @@ false $(NoWarn);CA1801;CA1822;CA1861;SA1600;SA1601 - net8.0 + net9.0 From bb80c6b6665d16e8396c63586bd9283226f061f6 Mon Sep 17 00:00:00 2001 From: costellobot <102549341+costellobot@users.noreply.github.com> Date: Tue, 12 Mar 2024 21:01:37 +0000 Subject: [PATCH 02/14] Update .NET SDK to 9.0.100-preview.2.24157.14 (#584) * Update .NET SDK Update .NET SDK to version 9.0.100-preview.2.24157.14. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> * Bump Microsoft.AspNetCore.Mvc.Testing from 9.0.0-preview.1.24081.5 to 9.0.0-preview.2.24128.4 Bumps Microsoft.AspNetCore.Mvc.Testing from 9.0.0-preview.1.24081.5 to 9.0.0-preview.2.24128.4. --- updated-dependencies: - dependency-name: Microsoft.AspNetCore.Mvc.Testing dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> --------- Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> --- Directory.Packages.props | 2 +- global.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 6df262de..aa03f2a3 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -6,7 +6,7 @@ - + diff --git a/global.json b/global.json index b207f0ea..2b2e49e1 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "9.0.100-preview.1.24101.2", + "version": "9.0.100-preview.2.24157.14", "allowPrerelease": false, "rollForward": "latestMajor" } From d92295b8d9f14153abcb0bbd60d4cfc3c74efa20 Mon Sep 17 00:00:00 2001 From: costellobot <102549341+costellobot@users.noreply.github.com> Date: Thu, 11 Apr 2024 18:22:41 +0100 Subject: [PATCH 03/14] Update .NET SDK to 9.0.100-preview.3.24204.13 (#607) * Update .NET SDK Update .NET SDK to version 9.0.100-preview.3.24204.13. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> * Bump Microsoft.AspNetCore.Mvc.Testing from 9.0.0-preview.2.24128.4 to 9.0.0-preview.3.24172.13 Bumps Microsoft.AspNetCore.Mvc.Testing from 9.0.0-preview.2.24128.4 to 9.0.0-preview.3.24172.13. --- updated-dependencies: - dependency-name: Microsoft.AspNetCore.Mvc.Testing dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> --------- Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> --- Directory.Packages.props | 2 +- global.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index aa03f2a3..c2afb2df 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -6,7 +6,7 @@ - + diff --git a/global.json b/global.json index 2b2e49e1..b35a5aa7 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "9.0.100-preview.2.24157.14", + "version": "9.0.100-preview.3.24204.13", "allowPrerelease": false, "rollForward": "latestMajor" } From 8ad4d404a235eb62ff21b49f55ddb8705588445f Mon Sep 17 00:00:00 2001 From: costellobot <102549341+costellobot@users.noreply.github.com> Date: Tue, 21 May 2024 19:39:15 +0100 Subject: [PATCH 04/14] Update .NET SDK to 9.0.100-preview.4.24267.66 (#648) * Update .NET SDK Update .NET SDK to version 9.0.100-preview.4.24267.66. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> * Bump Microsoft.AspNetCore.Mvc.Testing from 9.0.0-preview.3.24172.13 to 9.0.0-preview.4.24267.6 Bumps Microsoft.AspNetCore.Mvc.Testing from 9.0.0-preview.3.24172.13 to 9.0.0-preview.4.24267.6. --- updated-dependencies: - dependency-name: Microsoft.AspNetCore.Mvc.Testing dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> * Fix build Add compatibility suppression for netstandard2.0. * Fix ambiguous methods Remove span to use params span overloads. --------- Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> Co-authored-by: martincostello --- Directory.Packages.props | 2 +- global.json | 2 +- src/Logging.XUnit/CompatibilitySuppressions.xml | 11 +++++++++++ tests/Logging.XUnit.Tests/XUnitLoggerTests.cs | 16 +++++++++++----- 4 files changed, 24 insertions(+), 7 deletions(-) create mode 100644 src/Logging.XUnit/CompatibilitySuppressions.xml diff --git a/Directory.Packages.props b/Directory.Packages.props index c2afb2df..23e3e296 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -6,7 +6,7 @@ - + diff --git a/global.json b/global.json index b35a5aa7..4713f969 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "9.0.100-preview.3.24204.13", + "version": "9.0.100-preview.4.24267.66", "allowPrerelease": false, "rollForward": "latestMajor" } diff --git a/src/Logging.XUnit/CompatibilitySuppressions.xml b/src/Logging.XUnit/CompatibilitySuppressions.xml new file mode 100644 index 00000000..247ae464 --- /dev/null +++ b/src/Logging.XUnit/CompatibilitySuppressions.xml @@ -0,0 +1,11 @@ + + + + + CP0021 + M:MartinCostello.Logging.XUnit.XUnitLogger.BeginScope``1(``0)``0:notnull + lib/netstandard2.0/MartinCostello.Logging.XUnit.dll + lib/netstandard2.0/MartinCostello.Logging.XUnit.dll + true + + \ No newline at end of file diff --git a/tests/Logging.XUnit.Tests/XUnitLoggerTests.cs b/tests/Logging.XUnit.Tests/XUnitLoggerTests.cs index dab28a5c..1e179d5a 100644 --- a/tests/Logging.XUnit.Tests/XUnitLoggerTests.cs +++ b/tests/Logging.XUnit.Tests/XUnitLoggerTests.cs @@ -287,7 +287,8 @@ public static void XUnitLogger_Log_Logs_Message_If_Only_Exception() string expected = string.Join( Environment.NewLine, - ["[2018-08-19 16:12:16Z] info: MyName[2]", "System.InvalidOperationException: Invalid"]); + "[2018-08-19 16:12:16Z] info: MyName[2]", + "System.InvalidOperationException: Invalid"); // Act logger.Log(LogLevel.Information, new EventId(2), "state", exception, FormatterNull); @@ -317,7 +318,9 @@ public static void XUnitLogger_Log_Logs_Message_If_Message_And_Exception() string expected = string.Join( Environment.NewLine, - ["[2018-08-19 16:12:16Z] warn: MyName[3]", " Message|False|True", "System.InvalidOperationException: Invalid"]); + "[2018-08-19 16:12:16Z] warn: MyName[3]", + " Message|False|True", + "System.InvalidOperationException: Invalid"); // Act logger.Log(LogLevel.Warning, new EventId(3), null, exception, Formatter); @@ -345,7 +348,8 @@ public static void XUnitLogger_Log_Logs_Message_If_Message_And_No_Exception() string expected = string.Join( Environment.NewLine, - ["[2018-08-19 16:12:16Z] fail: MyName[4]", " Message|False|False"]); + "[2018-08-19 16:12:16Z] fail: MyName[4]", + " Message|False|False"); // Act logger.Log(LogLevel.Error, new EventId(4), null, null, Formatter); @@ -379,7 +383,8 @@ public static void XUnitLogger_Log_Logs_Messages(LogLevel logLevel, string short string expected = string.Join( Environment.NewLine, - [$"[2018-08-19 16:12:16Z] {shortLevel}: Your Name[85]", " Message|True|False"]); + $"[2018-08-19 16:12:16Z] {shortLevel}: Your Name[85]", + " Message|True|False"); // Act logger.Log(logLevel, new EventId(85), "Martin", null, Formatter); @@ -429,7 +434,8 @@ public static void XUnitLogger_Log_Logs_Message_If_Scopes_Included_But_There_Are string expected = string.Join( Environment.NewLine, - ["[2018-08-19 16:12:16Z] info: MyName[0]", " Message|False|False"]); + "[2018-08-19 16:12:16Z] info: MyName[0]", + " Message|False|False"); // Act logger.Log(LogLevel.Information, 0, null, null, Formatter); From b33e874366905d84d0ab135fea3272680cf438e5 Mon Sep 17 00:00:00 2001 From: Martin Costello Date: Fri, 31 May 2024 12:08:55 +0100 Subject: [PATCH 05/14] Use C# 13 Set `LangVersion=preview` to use C# 13. --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 786e3912..a39efbdf 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -23,7 +23,7 @@ false true enable - latest + preview true en-US direct From 297c805938e9cb3f9b9935fa5bad10fd370aa882 Mon Sep 17 00:00:00 2001 From: costellobot <102549341+costellobot@users.noreply.github.com> Date: Tue, 11 Jun 2024 20:27:35 +0100 Subject: [PATCH 06/14] Update .NET SDK to 9.0.100-preview.5.24307.3 (#675) * Update .NET SDK Update .NET SDK to version 9.0.100-preview.5.24307.3. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> * Bump Microsoft.AspNetCore.Mvc.Testing from 9.0.0-preview.4.24267.6 to 9.0.0-preview.5.24306.11 Bumps Microsoft.AspNetCore.Mvc.Testing from 9.0.0-preview.4.24267.6 to 9.0.0-preview.5.24306.11. --- updated-dependencies: - dependency-name: Microsoft.AspNetCore.Mvc.Testing dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> --------- Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> --- Directory.Packages.props | 2 +- global.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 23e3e296..03ac3aa9 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -6,7 +6,7 @@ - + diff --git a/global.json b/global.json index 4713f969..e841aeed 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "9.0.100-preview.4.24267.66", + "version": "9.0.100-preview.5.24307.3", "allowPrerelease": false, "rollForward": "latestMajor" } From ec968d515ed3708a42b95e8d72b003957519e273 Mon Sep 17 00:00:00 2001 From: costellobot <102549341+costellobot@users.noreply.github.com> Date: Wed, 10 Jul 2024 14:59:20 +0100 Subject: [PATCH 07/14] Update .NET SDK to 9.0.100-preview.6.24328.19 (#691) * Update .NET SDK Update .NET SDK to version 9.0.100-preview.6.24328.19. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> * Bump Microsoft.AspNetCore.Mvc.Testing from 9.0.0-preview.5.24306.11 to 9.0.0-preview.6.24328.4 Bumps Microsoft.AspNetCore.Mvc.Testing from 9.0.0-preview.5.24306.11 to 9.0.0-preview.6.24328.4. --- updated-dependencies: - dependency-name: Microsoft.AspNetCore.Mvc.Testing dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> * Fix build - Set `NuGetAuditMode=direct`. - Move CA1848 suppression to ruleset file. - Suppress IDE0130. --------- Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> Co-authored-by: martincostello --- Directory.Packages.props | 2 +- global.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 03ac3aa9..69e1f493 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -6,7 +6,7 @@ - + diff --git a/global.json b/global.json index e841aeed..76f24e30 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "9.0.100-preview.5.24307.3", + "version": "9.0.100-preview.6.24328.19", "allowPrerelease": false, "rollForward": "latestMajor" } From d1a6d246d1bb4687431211390364e336bf370342 Mon Sep 17 00:00:00 2001 From: costellobot <102549341+costellobot@users.noreply.github.com> Date: Tue, 13 Aug 2024 19:05:35 +0100 Subject: [PATCH 08/14] Update .NET SDK to 9.0.100-preview.7.24407.12 (#712) * Update .NET SDK Update .NET SDK to version 9.0.100-preview.7.24407.12. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> * Bump Microsoft.AspNetCore.Mvc.Testing from 9.0.0-preview.6.24328.4 to 9.0.0-preview.7.24406.2 Bumps Microsoft.AspNetCore.Mvc.Testing from 9.0.0-preview.6.24328.4 to 9.0.0-preview.7.24406.2. --- updated-dependencies: - dependency-name: Microsoft.AspNetCore.Mvc.Testing dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> --------- Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> --- Directory.Packages.props | 2 +- global.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 69e1f493..03f4a604 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -6,7 +6,7 @@ - + diff --git a/global.json b/global.json index 76f24e30..0ddd1707 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "9.0.100-preview.6.24328.19", + "version": "9.0.100-preview.7.24407.12", "allowPrerelease": false, "rollForward": "latestMajor" } From 61c1e81db9baf5b49c55a8f4c3b6afa7a451c8e1 Mon Sep 17 00:00:00 2001 From: Martin Costello Date: Mon, 9 Sep 2024 08:45:12 +0100 Subject: [PATCH 09/14] Revert to LangVersion latest Revert back to using the latest version of C# instead of preview. --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index a39efbdf..786e3912 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -23,7 +23,7 @@ false true enable - preview + latest true en-US direct From e335c6c2a8659d12f88e49e845602a4f3f1790da Mon Sep 17 00:00:00 2001 From: costellobot <102549341+costellobot@users.noreply.github.com> Date: Tue, 10 Sep 2024 19:37:01 +0100 Subject: [PATCH 10/14] Update .NET SDK (#732) Update .NET SDK to version 9.0.100-rc.1.24452.12. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 0ddd1707..809fc626 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "9.0.100-preview.7.24407.12", + "version": "9.0.100-rc.1.24452.12", "allowPrerelease": false, "rollForward": "latestMajor" } From 6060c1d5142ac4d199bac5df2ff5a90cab28da6e Mon Sep 17 00:00:00 2001 From: Martin Costello Date: Tue, 10 Sep 2024 19:42:04 +0100 Subject: [PATCH 11/14] Update NuGet package Update NuGet package for RC1. --- Directory.Packages.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 03f4a604..d04e905e 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -6,7 +6,7 @@ - + From 01ceb22da1dd511d677a8c389ae37c0c094b65c2 Mon Sep 17 00:00:00 2001 From: costellobot <102549341+costellobot@users.noreply.github.com> Date: Tue, 8 Oct 2024 18:42:05 +0100 Subject: [PATCH 12/14] Update .NET SDK to 9.0.100-rc.2.24474.11 (#755) * Update .NET SDK Update .NET SDK to version 9.0.100-rc.2.24474.11. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> * Bump Microsoft.AspNetCore.Mvc.Testing from 9.0.0-rc.1.24452.1 to 9.0.0-rc.2.24474.3 Bumps Microsoft.AspNetCore.Mvc.Testing from 9.0.0-rc.1.24452.1 to 9.0.0-rc.2.24474.3. --- updated-dependencies: - dependency-name: Microsoft.AspNetCore.Mvc.Testing dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> --------- Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> --- Directory.Packages.props | 2 +- global.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index d04e905e..7379300f 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -6,7 +6,7 @@ - + diff --git a/global.json b/global.json index 809fc626..6b97ddb7 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "9.0.100-rc.1.24452.12", + "version": "9.0.100-rc.2.24474.11", "allowPrerelease": false, "rollForward": "latestMajor" } From 764a0a58cded29f60362ca068acdd59ff51a4e65 Mon Sep 17 00:00:00 2001 From: costellobot <102549341+costellobot@users.noreply.github.com> Date: Tue, 12 Nov 2024 21:50:47 +0000 Subject: [PATCH 13/14] Update .NET SDK to 9.0.100 (#777) * Update .NET SDK Update .NET SDK to version 9.0.100. --- updated-dependencies: - dependency-name: Microsoft.NET.Sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> * Bump Microsoft.AspNetCore.Mvc.Testing from 9.0.0-rc.2.24474.3 to 9.0.0 Bumps Microsoft.AspNetCore.Mvc.Testing from 9.0.0-rc.2.24474.3 to 9.0.0. --- updated-dependencies: - dependency-name: Microsoft.AspNetCore.Mvc.Testing dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> --------- Signed-off-by: costellobot <102549341+costellobot@users.noreply.github.com> --- Directory.Packages.props | 2 +- global.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 7379300f..3f190a09 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -6,7 +6,7 @@ - + diff --git a/global.json b/global.json index 6b97ddb7..217f7c9f 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "9.0.100-rc.2.24474.11", + "version": "9.0.100", "allowPrerelease": false, "rollForward": "latestMajor" } From c608c442e445af84ec82ae2aae762ca83012e48a Mon Sep 17 00:00:00 2001 From: martincostello Date: Tue, 12 Nov 2024 22:01:01 +0000 Subject: [PATCH 14/14] Set executable bit Fix executable bit being unset. --- build.ps1 | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 build.ps1 diff --git a/build.ps1 b/build.ps1 old mode 100644 new mode 100755