Skip to content

Commit

Permalink
Removing redefining of msbuild target _FunctionsPreBuild (#2498)
Browse files Browse the repository at this point in the history
The `_FunctionsPreBuild` msbuild target is currently being redefined.
  • Loading branch information
kshyju committed May 30, 2024
1 parent e10dca1 commit 071d102
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and
</Target>

<!-- We have a few files we can tell the .NET SDK targets to copy for us early on in the build. -->
<Target Name="_FunctionsPreBuild" DependsOnTargets="_FunctionsGetPaths" BeforeTargets="AssignTargetPaths">
<Target Name="_FunctionsAssignTargetPaths" DependsOnTargets="_FunctionsGetPaths" BeforeTargets="AssignTargetPaths">
<ItemGroup>
<None Include="$(_FunctionsMetadataPath)" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" TargetPath="functions.metadata" />
<None Include="$(_FunctionsWorkerConfigPath)" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" TargetPath="worker.config.json" />
Expand Down
2 changes: 1 addition & 1 deletion sdk/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

### Microsoft.Azure.Functions.Worker.Sdk <version> (meta package)

- <entry>
- Removing redefining of msbuild target `_FunctionsPreBuild` (#2498)

### Microsoft.Azure.Functions.Worker.Sdk.Generators <version>

Expand Down

0 comments on commit 071d102

Please sign in to comment.