Skip to content

Commit 3cef2bc

Browse files
committed
Update .NET template pkg version & remove -preview from Dockerfile (#4712)
1 parent 14d94e2 commit 3cef2bc

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

eng/build/Templates.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22

33
<PropertyGroup>
4-
<TemplatesVersion>4.0.5212</TemplatesVersion>
4+
<TemplatesVersion>4.0.5331</TemplatesVersion>
55
<TemplatesJsonVersion>3.1.1648</TemplatesJsonVersion>
66
</PropertyGroup>
77

eng/scripts/download-templates.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Run: ./download-templates.ps1 || From root of the repo: ./eng/scripts/download-templates.ps1
2-
# Optional parameters: -OutputPath "./desired/output/path" -TemplatesVersion "4.0.5212" -TemplateJsonVersion "3.1.1648"
2+
# Optional parameters: -OutputPath "./desired/output/path" -TemplatesVersion "4.0.5331" -TemplateJsonVersion "3.1.1648"
33

44
# You can check NuGet for the latest template versions:
55
# https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.ItemTemplates/
@@ -12,7 +12,7 @@
1212
# Parse CLI arguments
1313
param (
1414
[string]$OutputPath = "./templates-download",
15-
[string]$TemplatesVersion = "4.0.5212",
15+
[string]$TemplatesVersion = "4.0.5331",
1616
[string]$TemplateJsonVersion = "3.1.1648"
1717
)
1818

release_notes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@
88
#### Changes
99

1010
- <entry>
11+
- Add updated Durable .NET templates (#4692)
12+
- Adding the MCP Tool Trigger Templates for the Node/Typescript (#4651)
13+
- Set `AzureWebJobsStorage` to use the storage emulator by default on all platforms (#4685)
14+
- Update .NET isolated templates package to 4.0.5331 (#4712)

src/Cli/func/StaticResources/Dockerfile.dotnet10Isolated

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:10.0-preview AS installer-env
1+
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS installer-env
22

33
COPY . /src/dotnet-function-app
44
RUN cd /src/dotnet-function-app && \

src/Cli/func/StaticResources/Dockerfile.dotnet9Isolated

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:9.0-preview AS installer-env
1+
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS installer-env
22

33
COPY . /src/dotnet-function-app
44
RUN cd /src/dotnet-function-app && \

0 commit comments

Comments
 (0)