Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<Compile Include="..\..\ref\Microsoft.Data.SqlClient.Batch.NetCoreApp.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Core" />
<PackageReference Include="Azure.Identity" />
<PackageReference Include="Microsoft.Bcl.Cryptography" />
<PackageReference Include="Microsoft.Data.SqlClient.SNI.runtime" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1041,6 +1041,7 @@

<!-- Package References Etc -->
<ItemGroup>
<PackageReference Include="Azure.Core" />
<PackageReference Include="Azure.Identity" />
<PackageReference Include="Microsoft.Bcl.Cryptography" />
<PackageReference Include="Microsoft.Data.SqlClient.SNI.runtime" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<Reference Include="System.Transactions" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Core" />
<PackageReference Include="Azure.Identity" />
<PackageReference Include="Microsoft.Bcl.Cryptography" />
<PackageReference Include="Microsoft.Data.SqlClient.SNI">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -951,6 +951,7 @@
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Core" />
<PackageReference Include="Azure.Identity" />
<PackageReference Include="Microsoft.Bcl.Cryptography" />
<PackageReference Include="Microsoft.Data.SqlClient.SNI">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,23 @@
<!-- References ====================================================== -->
<ItemGroup>
<!-- References that apply to all target frameworks -->
<PackageReference Include="Azure.Core" />
<PackageReference Include="Azure.Identity" />
<PackageReference Include="Microsoft.Bcl.Cryptography" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" />
<PackageReference Include="System.Buffers" />
<PackageReference Include="System.Configuration.ConfigurationManager" />
<PackageReference Include="System.Memory" />
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" />
<PackageReference Include="System.Security.Cryptography.Pkcs" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
<!-- References that only apply to net462 -->
<Reference Include="System.Configuration" />
<Reference Include="System.Configuration.ConfigurationManager" />
<Reference Include="System.Transactions" />
<PackageReference Include="System.Data.Common" />
<PackageReference Include="System.ValueTuple" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' != 'net462'">
<!-- References that only apply to netcore -->
<PackageReference Include="System.Configuration.ConfigurationManager" />
</ItemGroup>
</Project>
4 changes: 4 additions & 0 deletions tools/specs/Microsoft.Data.SqlClient.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
<tags>sqlclient microsoft.data.sqlclient</tags>
<dependencies>
<group targetFramework="net462">
<dependency id="Azure.Core" version="1.47.1" />
<dependency id="Azure.Identity" version="1.14.2" />
<dependency id="Microsoft.Bcl.Cryptography" version="8.0.0" />
<dependency id="Microsoft.Data.SqlClient.SNI" version="6.0.2" />
Expand All @@ -42,6 +43,7 @@
<dependency id="System.Text.Json" version="8.0.5" />
</group>
<group targetFramework="net8.0">
<dependency id="Azure.Core" version="1.47.1" />
<dependency id="Azure.Identity" version="1.14.2" />
<dependency id="Microsoft.Bcl.Cryptography" version="8.0.0" />
<dependency id="Microsoft.Data.SqlClient.SNI.runtime" version="6.0.2" exclude="Compile" />
Expand All @@ -54,6 +56,7 @@
<dependency id="System.Text.Json" version="8.0.5" />
</group>
<group targetFramework="net9.0">
<dependency id="Azure.Core" version="1.47.1" />
<dependency id="Azure.Identity" version="1.14.2" />
<dependency id="Microsoft.Bcl.Cryptography" version="9.0.4" />
<dependency id="Microsoft.Data.SqlClient.SNI.runtime" version="6.0.2" exclude="Compile" />
Expand All @@ -66,6 +69,7 @@
<dependency id="System.Text.Json" version="9.0.5" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="Azure.Core" version="1.47.1" />
<dependency id="Azure.Identity" version="1.14.2" />
<dependency id="Microsoft.Bcl.Cryptography" version="9.0.4" />
<dependency id="Microsoft.Data.SqlClient.SNI.runtime" version="6.0.2" exclude="Compile" />
Expand Down
Loading