Skip to content

Commit 0d4af01

Browse files
committed
fix merge breaks
1 parent df48313 commit 0d4af01

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
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
@@ -285,6 +285,9 @@
285285
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\ManagedSni\ConcurrentQueueSemaphore.netcore.cs">
286286
<Link>Microsoft\Data\SqlClient\ManagedSni\ConcurrentQueueSemaphore.netcore.cs</Link>
287287
</Compile>
288+
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\ManagedSni\ResolvedServerSpn.cs">
289+
<Link>Microsoft\Data\SqlClient\ManagedSni\ResolvedServerSpn.cs</Link>
290+
</Compile>
288291
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\ManagedSni\SniAsyncCallback.netcore.cs">
289292
<Link>Microsoft\Data\SqlClient\ManagedSni\SniAsyncCallback.netcore.cs</Link>
290293
</Compile>

src/Microsoft.Data.SqlClient/netcore/src/Microsoft/Data/SqlClient/TdsParserStateObject.netcore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
using System.Threading.Tasks;
1212
using Microsoft.Data.Common;
1313
using Microsoft.Data.ProviderBase;
14-
using Microsoft.Data.SqlClient.SNI;
14+
using Microsoft.Data.SqlClient.ManagedSni;
1515

1616
namespace Microsoft.Data.SqlClient
1717
{

src/Microsoft.Data.SqlClient/netcore/src/Microsoft/Data/SqlClient/TdsParserStateObjectNative.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
using Interop.Windows.Sni;
1414
using Microsoft.Data.Common;
1515
using Microsoft.Data.ProviderBase;
16-
using Microsoft.Data.SqlClient.SNI;
16+
using Microsoft.Data.SqlClient.ManagedSni;
1717

1818
namespace Microsoft.Data.SqlClient
1919
{

src/Microsoft.Data.SqlClient/src/Microsoft/Data/SqlClient/ManagedSni/ResolvedServerSpn.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#nullable enable
66

7-
namespace Microsoft.Data.SqlClient.SNI
7+
namespace Microsoft.Data.SqlClient.ManagedSni
88
{
99
/// <summary>
1010
/// This is used to hold the ServerSpn for a given connection. Most connection types have a single format, although TCP connections may allow

src/Microsoft.Data.SqlClient/src/Microsoft/Data/SqlClient/SSPI/SspiContextProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ internal abstract class SspiContextProvider
1818

1919
#if NET
2020
/// <remarks>
21-
/// <see cref="SNI.ResolvedServerSpn"/> for details as to what <paramref name="primaryServerSpn"/> and <paramref name="secondaryServerSpn"/> means and why there are two.
21+
/// <see cref="ManagedSni.ResolvedServerSpn"/> for details as to what <paramref name="primaryServerSpn"/> and <paramref name="secondaryServerSpn"/> means and why there are two.
2222
/// </remarks>
2323
#endif
2424
internal void Initialize(

0 commit comments

Comments
 (0)