Skip to content
Merged
Changes from 1 commit
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
Next Next commit
Include default values in Sdk.props
  • Loading branch information
jviau committed Jan 19, 2024
commit 4356d9255991248abb75c34f9baf061755abc84a
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