File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
src/Microsoft.Data.SqlClient
src/Microsoft/Data/SqlClient Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 146
146
<Compile Include =" $(CommonSourceRoot)Microsoft\Data\SqlClient\ApplicationIntent.cs" >
147
147
<Link >Microsoft\Data\SqlClient\ApplicationIntent.cs</Link >
148
148
</Compile >
149
+ <Compile Include =" $(CommonSourceRoot)Microsoft\Data\SqlClient\ArrayBufferWriter.cs" >
150
+ <Link >Microsoft\Data\SqlClient\ArrayBufferWriter.cs</Link >
151
+ </Compile >
149
152
<Compile Include =" $(CommonSourceRoot)Microsoft\Data\SqlClient\AssemblyRef.cs" >
150
153
<Link >Microsoft\Data\SqlClient\AssemblyRef.cs</Link >
151
154
</Compile >
503
506
<Compile Include =" $(CommonSourceRoot)Microsoft\Data\SqlClient\SqlObjectPool.cs" >
504
507
<Link >Microsoft\Data\SqlClient\SqlObjectPool.cs</Link >
505
508
</Compile >
506
- <Compile Include =" $(CommonSourceRoot)Microsoft\Data\SqlClient\ArrayBufferWriter.cs" >
507
- <Link >Microsoft\Data\SqlClient\ArrayBufferWriter.cs</Link >
508
- </Compile >
509
509
<Compile Include =" $(CommonSourceRoot)Microsoft\Data\SqlClient\SqlParameter.cs" >
510
510
<Link >Microsoft\Data\SqlClient\SqlParameter.cs</Link >
511
511
</Compile >
Original file line number Diff line number Diff line change 265
265
<Compile Include =" $(CommonSourceRoot)Microsoft\Data\SqlClient\SqlObjectPool.cs" >
266
266
<Link >Microsoft\Data\SqlClient\SqlObjectPool.cs</Link >
267
267
</Compile >
268
- <Compile Include =" $(CommonSourceRoot)Microsoft\Data\SqlClient\ArrayBufferWriter.cs" >
269
- <Link >Microsoft\Data\SqlClient\ArrayBufferWriter.cs</Link >
270
- </Compile >
271
268
<Compile Include =" $(CommonSourceRoot)Microsoft\Data\SqlClient\AAsyncCallContext.cs" >
272
269
<Link >Microsoft\Data\SqlClient\AAsyncCallContext.cs</Link >
273
270
</Compile >
292
289
<Compile Include =" $(CommonSourceRoot)Microsoft\Data\SqlClient\AlwaysEncryptedKeyConverter.cs" >
293
290
<Link >Microsoft\Data\SqlClient\AlwaysEncryptedKeyConverter.cs</Link >
294
291
</Compile >
292
+ <Compile Include =" $(CommonSourceRoot)Microsoft\Data\SqlClient\ArrayBufferWriter.cs" >
293
+ <Link >Microsoft\Data\SqlClient\ArrayBufferWriter.cs</Link >
294
+ </Compile >
295
295
<Compile Include =" $(CommonSourceRoot)Microsoft\Data\SqlClient\AzureAttestationBasedEnclaveProvider.cs" >
296
296
<Link >Microsoft\Data\SqlClient\AzureAttestationBasedEnclaveProvider.cs</Link >
297
297
</Compile >
Original file line number Diff line number Diff line change 2
2
// The .NET Foundation licenses this file to you under the MIT license.
3
3
// See the LICENSE file in the project root for more information.
4
4
5
- #if NETFRAMEWORK || NETSTANDARD
5
+ #if NETFRAMEWORK
6
6
7
7
using System ;
8
8
using System . Buffers ;
Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ internal void TdsLogin(
192
192
clientInterfaceName ,
193
193
sspiWriter is { } ? sspiWriter . WrittenSpan : ReadOnlySpan < byte > . Empty ) ;
194
194
195
- if ( sspiWriter is { } )
195
+ if ( sspiWriter is not null )
196
196
{
197
197
_writers . Return ( sspiWriter ) ;
198
198
}
You can’t perform that action at this time.
0 commit comments