From d82a5d041bd21502415e56f10cacde89aead379b Mon Sep 17 00:00:00 2001 From: Curt Hagenlocher Date: Tue, 16 Jan 2024 04:36:35 -0800 Subject: [PATCH] GH-39598: [C#] Fix verification script (#39605) ### What changes are included in this PR? The verification script is modified to look for the versions of .NET now supported by the package. ### Are these changes tested? Manually tested the verification command. * Closes: #39598 Authored-by: Curt Hagenlocher Signed-off-by: Curt Hagenlocher --- dev/release/verify-release-candidate.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh index ab5c476768ed5..c5e27d083013e 100755 --- a/dev/release/verify-release-candidate.sh +++ b/dev/release/verify-release-candidate.sh @@ -878,10 +878,10 @@ test_csharp() { fi if [ "${SOURCE_KIND}" = "local" ]; then - echo "Skipping sourelink verification on local build" + echo "Skipping sourcelink verification on local build" else - dotnet tool run sourcelink test artifacts/Apache.Arrow/Release/netstandard1.3/Apache.Arrow.pdb - dotnet tool run sourcelink test artifacts/Apache.Arrow/Release/netcoreapp3.1/Apache.Arrow.pdb + dotnet tool run sourcelink test artifacts/Apache.Arrow/Release/netstandard2.0/Apache.Arrow.pdb + dotnet tool run sourcelink test artifacts/Apache.Arrow/Release/net6.0/Apache.Arrow.pdb fi popd