-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added additional targeting to better support dependency contexts. Fix…
…ed issues with attributes not working as expected. Added customizable configuration at a per function app level. +semver: minor
- Loading branch information
1 parent
204796c
commit 2548ee7
Showing
11 changed files
with
172 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
src/Azure.Functions/build/Rocket.Surgery.Azure.Functions.props
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<Project> | ||
</Project> |
9 changes: 9 additions & 0 deletions
9
src/Azure.Functions/build/Rocket.Surgery.Azure.Functions.targets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<Project> | ||
<Target Name="MoveDepsJson" AfterTargets="_GenerateFunctionsPostBuild"> | ||
<!-- TODO: CopyFilesToOutputDirectory does not look at the outdir to copy the pdbs. hence copying it manually. --> | ||
<!-- Copy the application pdb to the bin folder--> | ||
<Move SourceFiles="$(TargetDir)$(TargetName).deps.json" DestinationFiles="$(TargetDir)bin\$(TargetName).deps.json" OverwriteReadOnlyFiles="true" Condition="Exists('$(TargetDir)$(TargetName).deps.json')" ContinueOnError="true" /> | ||
<Move SourceFiles="$(TargetDir)$(TargetName).runtimeconfig.json" DestinationFiles="$(TargetDir)bin\$(TargetName).runtimeconfig.json" OverwriteReadOnlyFiles="true" Condition="Exists('$(TargetDir)$(TargetName).runtimeconfig.json')" ContinueOnError="true" /> | ||
<Move SourceFiles="$(TargetDir)$(TargetName).runtimeconfig.dev.json" DestinationFiles="$(TargetDir)bin\$(TargetName).runtimeconfig.dev.json" OverwriteReadOnlyFiles="true" Condition="Exists('$(TargetDir)$(TargetName).runtimeconfig.dev.json')" ContinueOnError="true" /> | ||
</Target> | ||
</Project> |
3 changes: 3 additions & 0 deletions
3
src/Azure.Functions/buildMultiTargeting/Rocket.Surgery.Azure.Functions.props
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<Project> | ||
<Import Project="..\build\$(MSBuildThisFile)" /> | ||
</Project> |
3 changes: 3 additions & 0 deletions
3
src/Azure.Functions/buildMultiTargeting/Rocket.Surgery.Azure.Functions.targets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<Project> | ||
<Import Project="..\build\$(MSBuildThisFile)" /> | ||
</Project> |