From bbb8ad7a0d17ff04887082da2b1c7d2ee023f586 Mon Sep 17 00:00:00 2001 From: Bryan Sanchez Date: Tue, 17 Feb 2026 11:43:57 +0100 Subject: [PATCH 1/3] Upgrade project to .NET 10 and update package references --- .../dotnet/src/sample/sample.csproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/samples/function-app-storage-http/dotnet/src/sample/sample.csproj b/samples/function-app-storage-http/dotnet/src/sample/sample.csproj index 1829250..d7c6345 100644 --- a/samples/function-app-storage-http/dotnet/src/sample/sample.csproj +++ b/samples/function-app-storage-http/dotnet/src/sample/sample.csproj @@ -1,6 +1,6 @@ - net9.0 + net10.0 v4 Exe enable @@ -8,15 +8,15 @@ - - + + - - + + - + From af8a44160656f6357f97d80b212e5786b75bc76c Mon Sep 17 00:00:00 2001 From: Bryan Sanchez Date: Tue, 17 Feb 2026 13:41:15 +0100 Subject: [PATCH 2/3] Upgrade .NET version to 10 in CI workflow and deployment script --- .github/workflows/run-samples.yml | 2 +- samples/function-app-storage-http/dotnet/scripts/deploy.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 samples/function-app-storage-http/dotnet/scripts/deploy.sh diff --git a/.github/workflows/run-samples.yml b/.github/workflows/run-samples.yml index fae0250..89b215f 100644 --- a/.github/workflows/run-samples.yml +++ b/.github/workflows/run-samples.yml @@ -48,7 +48,7 @@ jobs: - name: Set up .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: '9.0' + dotnet-version: '10.0' - name: Install System Dependencies # Essential tools for script execution, app packaging, and database connectivity. diff --git a/samples/function-app-storage-http/dotnet/scripts/deploy.sh b/samples/function-app-storage-http/dotnet/scripts/deploy.sh old mode 100644 new mode 100755 index 49e5b0c..00c35a8 --- a/samples/function-app-storage-http/dotnet/scripts/deploy.sh +++ b/samples/function-app-storage-http/dotnet/scripts/deploy.sh @@ -8,7 +8,7 @@ FUNCTION_APP_NAME="${PREFIX}-func-${SUFFIX}" STORAGE_ACCOUNT_NAME="${PREFIX}storage${SUFFIX}" RESOURCE_GROUP_NAME="${PREFIX}-rg" RUNTIME="DOTNET-ISOLATED" -RUNTIME_VERSION="9" +RUNTIME_VERSION="10" PLAYER_NAMES="Alice,Anastasia,Paolo,Leo,Mia" INPUT_STORAGE_CONTAINER_NAME="input" OUTPUT_STORAGE_CONTAINER_NAME="output" From 0ac7e4bab3e33776a326b2c7e0a5046870246328 Mon Sep 17 00:00:00 2001 From: Bryan Sanchez Date: Wed, 25 Feb 2026 13:20:25 +0100 Subject: [PATCH 3/3] Add CODEOWNERS file to define repository ownership --- .github/CODEOWNERS | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..82a4af3 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @localstack/smurf \ No newline at end of file