Sign the Microsoft.SqlServer.Server assembly and wire its package CI#4386
Draft
paulmedynski wants to merge 1 commit into
Draft
Sign the Microsoft.SqlServer.Server assembly and wire its package CI#4386paulmedynski wants to merge 1 commit into
paulmedynski wants to merge 1 commit into
Conversation
Align the signing comment with the assembly-signing terminology and wire the SqlServer.Server package CI stage/job for signed internal builds.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR aligns SqlServer.Server’s project comment terminology with the repo-wide “assembly signing” language, and wires the SqlServer.Server CI stage/job to support signed internal (ADO.Net) builds by threading isInternalBuild and referenceType through the CI templates and conditionally supplying SigningKeyPath during pack.
Changes:
- Update
Microsoft.SqlServer.Server.csprojcomment to “Assembly signing”. - Add
isInternalBuildandreferenceTypeparameters to the SqlServer package CI stage and pass them into the pack job. - In the SqlServer pack job, conditionally download the signing key and include
SigningKeyPathindotnet packbuild properties for internal Package-mode builds.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| src/Microsoft.SqlServer.Server/Microsoft.SqlServer.Server.csproj | Renames the signing comment to match “assembly signing” terminology used elsewhere. |
| eng/pipelines/stages/build-sqlserver-package-ci-stage.yml | Adds isInternalBuild/referenceType parameters and forwards them to the pack job. |
| eng/pipelines/jobs/pack-sqlserver-package-ci-job.yml | Adds conditional signing-key download and SigningKeyPath injection for internal Package-mode packs. |
| eng/pipelines/dotnet-sqlclient-ci-core.yml | Threads isInternalBuild and referenceType into the SqlServer package stage invocation. |
This was referenced Jun 19, 2026
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.
Summary
Aligns the
Microsoft.SqlServer.Serversigning comment with the assembly-signing terminology and wires the SqlServer.Server package CI stage/job for signed internal builds.🔗 PR Stack
Part of a 5-PR stack — current PR marked 👉. Indentation shows the branch base.
mainSTRONG_NAME_SIGNING→ASSEMBLY_SIGNINGMicrosoft.SqlServer.Serverassembly & CIflowchart TD main([main]) PR1["🏗️ #4382<br/>signing-core"] PR2["🏷️ #4383<br/>rename"] PR3["🪵 #4384<br/>logging-tests"] PR4["☁️ #4385<br/>azure-signing"] PR5["🧩 #4386<br/>sqlserver.server"] main --> PR1 --> PR2 PR2 --> PR3 PR2 --> PR4 PR2 --> PR5 click PR1 "https://github.com/dotnet/SqlClient/pull/4382" _blank click PR2 "https://github.com/dotnet/SqlClient/pull/4383" _blank click PR3 "https://github.com/dotnet/SqlClient/pull/4384" _blank click PR4 "https://github.com/dotnet/SqlClient/pull/4385" _blank click PR5 "https://github.com/dotnet/SqlClient/pull/4386" _blank classDef current fill:#1f6feb,stroke:#1f6feb,color:#fff; class PR5 current;Checklist