-
Notifications
You must be signed in to change notification settings - Fork 10.3k
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
fix #12445 by migrating dotnet-sql-cache to new SqlClient #12447
fix #12445 by migrating dotnet-sql-cache to new SqlClient #12447
Conversation
I'm 95% sure this tool isn't included by the CLI (it's not present in the |
@anurse it was removed back in May: dotnet/installer#2014. |
Cool, thanks for confirming @livarcocc . That was my understanding as well but didn't have the context top-of-mind. |
Test failures look suspicious. @rynowak @pranavkm @ajaybhargavb did something bad sneak into 'master'? |
@dougbu What test failures? I only see already-quarantined tests failing. The build failure was a code signing failure, which does appear to be related, though I'm not sure how to resolve it right now (will look in to it).
|
I believe I've resolved the signing issue. |
We include the Microsoft.Data.SqlClient.dll assembly in our global tool 'dotnet-sql-cache'. | ||
It is already signed by that team, so we don't need to sign it. | ||
--> | ||
<FileSignInfo Include="Microsoft.Data.SqlClient.dll" CertificateName="None" /> |
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.
Do we still validate that the assembly is signed, even when we label it as not to be signed by us? Since this DLL comes from a different team, they handle the signing, but I would like us to be validating that it's all signed (in case they miss signing sometime).
For additional context: We're using the OOB SqlClient in dotnet-sql-client
which has to embed all it's dependencies (since it's a global tool). Hence this DLL now appears in the dotnet-sql-client nupkg. We don't ship this tool in the SDK nor in any shared framework.
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.
cc @aspnet/build
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.
As far as I can tell, we do not do signing validation in this repo at the moment. That'll be corrected as I complete #11924 because the new stages include signing validation.
FYI everywhere else, we use the generic release pipeline (https://dnceng.visualstudio.com/internal/_release?view=mine&definitionId=39 aka "Public Dev. Release") which does signing validation for everything it publishes.
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.
Doing validation on publish is a reasonable stop-gap until #11924 goes in, thanks!
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.
I don't anticipate a problem, just being paranoid ;)
Tested by
TestSchema.TestTable
table: