Minor touch-ups to BuildGuide and build.proj#4246
Minor touch-ups to BuildGuide and build.proj#4246cheenamalhotra wants to merge 8 commits intomainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the build guide documentation to correct a typo and clarify usage of the PackageVersion<TargetPackage> MSBuild parameter for build.proj.
Changes:
- Fixes the
-p:PackageVersion<TargetPackage>table row formatting/typo. - Adds a list of accepted
<TargetPackage>suffixes in the build guide.
Co-authored-by: Copilot <copilot@github.com>
There was a problem hiding this comment.
Pull request overview
Updates build tooling documentation and fixes a property wiring issue so package version parameters behave as documented.
Changes:
- Fix
PackageVersionAzureArgumentto pass$(PackageVersionAzure)intoAzurePackageVersion. - Clean up BUILDGUIDE wording/casing/typos and expand the
PackageVersion<TargetPackage>documentation.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| build.proj | Corrects the Azure package-version argument wiring so PackageVersionAzure actually takes effect. |
| BUILDGUIDE.md | Improves wording/typos and adds details around package version parameters and packing guidance. |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Updates build/versioning wiring and polishes the developer build documentation to better reflect the supported build.proj parameters and workflows.
Changes:
- Fixes
PackageVersionAzureArgumentinbuild.projto pass$(PackageVersionAzure)toAzurePackageVersion. - Corrects multiple typos/wording issues and improves clarity in
BUILDGUIDE.md(prereqs, packaging section, and versioning notes). - Expands documentation for
-p:PackageVersion<TargetPackage>to enumerate valid target package names.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| build.proj | Corrects the Azure package version property wiring so PackageVersionAzure actually affects AzurePackageVersion. |
| BUILDGUIDE.md | Fixes typos and refines build/pack documentation, including the PackageVersion<…> parameter description. |
Co-authored-by: Copilot <copilot@github.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4246 +/- ##
==========================================
- Coverage 65.95% 64.25% -1.71%
==========================================
Files 277 272 -5
Lines 42989 65783 +22794
==========================================
+ Hits 28354 42269 +13915
- Misses 14635 23514 +8879
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Pull request overview
Updates build/pack infrastructure and build documentation to better align version parameters and reduce friction when packing SqlClient without explicitly specifying dependency package versions.
Changes:
- Fix
PackageVersionAzureArgumentto pass$(PackageVersionAzure)(not$(PackageVersionAbstractions)). - In
PackSqlClient, auto-evaluatePackageVersionAbstractions/PackageVersionLoggingfrom their projects when not provided, and pass them intonuget pack. - Clean up BUILDGUIDE.md typos and clarify
PackageVersion<TargetPackage>usage + examples.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| build.proj | Fixes Azure version argument wiring; adds PackSqlClient-time evaluation/sanitization of Abstractions/Logging package versions for nuspec dependency properties. |
| BUILDGUIDE.md | Typo/wording fixes; documents correct PackageVersion<...> parameters and updates examples accordingly. |
Nothing major - fixing few typos and adding some details.
Also fixes build error when building SqlClient with below command:
dotnet build build.proj -t:BuildSqlClient,PackSqlClient -p:BuildSuffix=docsFailed Build
Error:
Changes verified: Fixed Build