-
Notifications
You must be signed in to change notification settings - Fork 54
Update Appx manifest with new cap and fix statically linking to vcruntime #1242
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 includes code cleanup and configuration improvements across build scripts, CI/CD pipelines, and project templates.
- Simplifies Azure CLI authentication logic by removing redundant command existence checks
- Fixes URL formatting issue in Azure DevOps pipeline
- Corrects spelling error in issue template
- Updates Cargo configuration for Windows MSVC targets with explicit CRT linking flags
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| build.ps1 | Removes redundant nested Azure CLI command check, streamlining authentication flow |
| .pipelines/DSC-Official.yml | Fixes malformed Azure DevOps organization URL (removes double slash) |
| .github/ISSUE_TEMPLATE/Feature_Request.yml | Corrects duplicate word in placeholder text |
| .cargo/config.toml | Expands rustflags configuration with explicit Windows CRT library linking arguments |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| } | ||
|
|
||
| $env:RUSTC_LOG=$null | ||
| $env:RUSTFLAGS='-Dwarnings' |
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.
Whoops, you still have one of these in build.helpers.psm1 as well. Line 753-754
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.
BUILD: Performing setup steps::Configuring Rust environment
VERBOSE: Caching current rust environment variables...
VERBOSE: No Rust environment variables defined
VERBOSE: Setting RUSTFLAGS to '-Dwarnings'
DHowett
left a comment
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.
It's perfect. Not a DLL dependency out of place.
PR Summary
Fixes some issues:
azContext
Fix #1243
Fix #1244