-
Notifications
You must be signed in to change notification settings - Fork 200
[MSBUILD SDK] Add dev.ps1 script for local-dev of Azure.Functions.Sdk #3295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR enhances the local development workflow for the Azure.Functions.Sdk by adding a PowerShell script that bootstraps the SDK for local testing and enables dotnet watch support on the resolver project.
Changes:
- Added
dev.ps1script to automate SDK publishing for local development with configurable Debug/Release builds - Modified the resolver project to support
dotnet watchby tracking changes in SDK subdirectories (Build, Sdk, Targets) - Updated README with local development instructions
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 5 comments.
| File | Description |
|---|---|
| src/Azure.Functions.Sdk/dev.ps1 | New PowerShell script that publishes the SDK resolver and sets MSBUILDADDITIONALSDKRESOLVERSFOLDER for local testing |
| test/Azure.Functions.Sdk.Resolver/Azure.Functions.Sdk.Resolver.csproj | Added Watch configuration for SDK directories and refactored project path property |
| src/Azure.Functions.Sdk/README.md | Added local development documentation section |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
test/Azure.Functions.Sdk.Resolver/Azure.Functions.Sdk.Resolver.csproj
Outdated
Show resolved
Hide resolved
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
….csproj Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Quick PR to improve local dev loop. Adds a ps1 script for a quick way to bootstrap the SDK for local dev. Also supports
dotnet watchon the resolver csproj.