[Design] Ensuring Core Tools can be used to create and run functions offline#4763
Merged
liliankasem merged 4 commits intomainfrom Jan 13, 2026
Merged
[Design] Ensuring Core Tools can be used to create and run functions offline#4763liliankasem merged 4 commits intomainfrom
liliankasem merged 4 commits intomainfrom
Conversation
satvu
reviewed
Jan 12, 2026
satvu
reviewed
Jan 12, 2026
satvu
reviewed
Jan 12, 2026
satvu
approved these changes
Jan 12, 2026
aishwaryabh
approved these changes
Jan 13, 2026
manvkaur
reviewed
Jan 14, 2026
|
|
||
| 1. We should disable the `EnsureLatest` bundles setting from the host. We should not need this if we | ||
| do the bundles management on the core tools side. | ||
| 2. We should not download bundles for stacks that do not require it (e.g. dotnet apps) |
Contributor
There was a problem hiding this comment.
dotnet in-proc scripting apps will need bundle.
Another consideration, if user just has http or timer trigger functions in their function app, bundle is not required to run the app. This can only be determined for apps with host based indexing or customer's can remove it themselves.
Only need for bundle in such case would be templates
4 tasks
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Design proposal for offline support in Core Tools.
One of the major issues is that today we require internet connectivity to download extension bundles from
cdn.functions.azure.comduringfunc start, causing local development to fail in offline. This design proposes making the tool fully functional offline by implementing cache-first fallbacks for all network operations while maintaining optimal online performance.