Skip to content

Commit 000d651

Browse files
authored
feat: update .NET layer support to include version 10 (#445)
1 parent 4bdf2a3 commit 000d651

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dotnet/publish-layers.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function usage {
1919
}
2020

2121
function build-dotnet-x86-64 {
22-
echo "Building New Relic layer for .NET 6, 7 and 8 (x86_64)"
22+
echo "Building New Relic layer for .NET 6, 7, 8 and 10 (x86_64)"
2323
rm -rf $BUILD_DIR $DOTNET_DIST_X86_64
2424
mkdir -p $DIST_DIR
2525
get_agent amd64
@@ -44,7 +44,7 @@ function publish-dotnet-x86-64 {
4444
}
4545

4646
function build-dotnet-arm64 {
47-
echo "Building New Relic layer for .NET 6, 7 and 8 (ARM64)"
47+
echo "Building New Relic layer for .NET 6, 7, 8 and 10 (ARM64)"
4848
rm -rf $BUILD_DIR $DOTNET_DIST_ARM64
4949
mkdir -p $DIST_DIR
5050
get_agent arm64

libBuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ function publish_layer {
275275
fi
276276

277277
if [[ $runtime_name == "dotnet" ]]
278-
then compat_list=("dotnet6" "dotnet8")
278+
then compat_list=("dotnet6" "dotnet8" "dotnet10")
279279
fi
280280

281281
echo "Uploading ${layer_archive} to s3://${bucket_name}/${s3_key}"

0 commit comments

Comments
 (0)