Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eng/build/Templates.targets
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<PropertyGroup>
<TemplatesVersion>4.0.5212</TemplatesVersion>
<TemplatesVersion>4.0.5331</TemplatesVersion>
<TemplatesJsonVersion>3.1.1648</TemplatesJsonVersion>
</PropertyGroup>

Expand Down
4 changes: 2 additions & 2 deletions eng/scripts/download-templates.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Run: ./download-templates.ps1 || From root of the repo: ./eng/scripts/download-templates.ps1
# Optional parameters: -OutputPath "./desired/output/path" -TemplatesVersion "4.0.5212" -TemplateJsonVersion "3.1.1648"
# Optional parameters: -OutputPath "./desired/output/path" -TemplatesVersion "4.0.5331" -TemplateJsonVersion "3.1.1648"

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

Expand Down
1 change: 1 addition & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@
- Add updated Durable .NET templates (#4692)
- Adding the MCP Tool Trigger Templates for the Node/Typescript (#4651)
- Set `AzureWebJobsStorage` to use the storage emulator by default on all platforms (#4685)
- Update .NET isolated templates package to 4.0.5331 (#4712)
2 changes: 1 addition & 1 deletion src/Cli/func/StaticResources/Dockerfile.dotnet10Isolated
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:10.0-preview AS installer-env
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS installer-env

COPY . /src/dotnet-function-app
RUN cd /src/dotnet-function-app && \
Expand Down
2 changes: 1 addition & 1 deletion src/Cli/func/StaticResources/Dockerfile.dotnet9Isolated
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:9.0-preview AS installer-env
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS installer-env

COPY . /src/dotnet-function-app
RUN cd /src/dotnet-function-app && \
Expand Down
Loading