Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
9 changes: 8 additions & 1 deletion sdk/Sdk/Targets/Microsoft.Azure.Functions.Worker.Sdk.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,18 @@ WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and
<!--Our source generators rely on the FunctionsExecutionModel property.-->
<FunctionsExecutionModel>isolated</FunctionsExecutionModel>
<_FunctionsSkipCleanOutput>true</_FunctionsSkipCleanOutput>
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
<DefaultExcludesInProjectFolder>$(DefaultExcludesInProjectFolder);host.json;local.settings.json</DefaultExcludesInProjectFolder>
</PropertyGroup>

<!--Enable Azure Functions project capability to enable tools-->
<ItemGroup>
<ProjectCapability Include="AzureFunctions"/>
<ProjectCapability Include="AzureFunctions"/>
</ItemGroup>

<ItemGroup>
<None Include="host.json" CopyToOutputDirectory="PreserveNewest" CopyToPublisDirectory="PreserveNewest" />
<None Include="local.settings.json" CopyToOutputDirectory="PreserveNewest" CopyToPublisDirectory="Never" />
</ItemGroup>

<ItemGroup>
Expand Down
11 changes: 3 additions & 8 deletions sdk/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
-->


### Microsoft.Azure.Functions.Worker.Sdk 1.17.0-preview1 (meta package)

- Improve incremental build support for worker extension project inner build (https://github.com/Azure/azure-functions-dotnet-worker/pull/1749)
- Now builds to intermediate output path
- Resolve and pass nuget restore sources as explicit property to inner build (https://github.com/Azure/azure-functions-dotnet-worker/pull/1937)
- Integrate inner build with existing .NET SDK targets (https://github.com/Azure/azure-functions-dotnet-worker/pull/1861)
- Targets have been refactored to participate with `CopyToOutputDirectory` and `CopyToPublishDirectory` instead of manually copying
- Incremental build support further improved
### Microsoft.Azure.Functions.Worker.Sdk <version>

- Set default values for `host.json`, `local.settings.json`, and `AzureFunctionsVersion` in Sdk.props (https://github.com/Azure/azure-functions-dotnet-worker/pull/2223)