Skip to content

Commit f3ff3d3

Browse files
authored
[Port main->6.0] Enhance TDS Login ClientInterfaceName field with client info (#3200)
* Enhance TDS Login ClientInterfaceName field with client info (#3149) - Moved logic to build client interface name into its own ClientInterface class. - Added tests for ClientInterface. - Reverted changes to Application Name. - Removed unnecessary SQP_PROVIDER_NAME constant. * User Story 33291: Enhance client interface value sent with login - Fixed vulnerable transitive dependencies. * User Story 33291: Enhance client interface value sent with login - Removed duplicate System.Text.Json version.
1 parent ef082bc commit f3ff3d3

File tree

13 files changed

+1048
-9
lines changed

13 files changed

+1048
-9
lines changed

src/Microsoft.Data.SqlClient/netcore/src/Microsoft.Data.SqlClient.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,9 @@
155155
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\AzureAttestationBasedEnclaveProvider.cs">
156156
<Link>Microsoft\Data\SqlClient\AzureAttestationBasedEnclaveProvider.cs</Link>
157157
</Compile>
158+
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\ClientInterface.cs">
159+
<Link>Microsoft\Data\SqlClient\ClientInterface.cs</Link>
160+
</Compile>
158161
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\ColumnEncryptionKeyInfo.cs">
159162
<Link>Microsoft\Data\SqlClient\ColumnEncryptionKeyInfo.cs</Link>
160163
</Compile>

src/Microsoft.Data.SqlClient/netfx/src/Microsoft.Data.SqlClient.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,9 @@
340340
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\AzureAttestationBasedEnclaveProvider.cs">
341341
<Link>Microsoft\Data\SqlClient\AzureAttestationBasedEnclaveProvider.cs</Link>
342342
</Compile>
343+
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\ClientInterface.cs">
344+
<Link>Microsoft\Data\SqlClient\ClientInterface.cs</Link>
345+
</Compile>
343346
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\ColumnEncryptionKeyInfo.cs">
344347
<Link>Microsoft\Data\SqlClient\ColumnEncryptionKeyInfo.cs</Link>
345348
</Compile>

0 commit comments

Comments
 (0)