-
Notifications
You must be signed in to change notification settings - Fork 303
Merge common code base for SqlUtil.cs #2503
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2503 +/- ##
==========================================
+ Coverage 72.72% 72.97% +0.24%
==========================================
Files 313 310 -3
Lines 61718 61062 -656
==========================================
- Hits 44886 44560 -326
+ Misses 16832 16502 -330
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -550,7 +553,7 @@ | |||
</Compile> | |||
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\SqlUtil.cs"> | |||
<Link>Microsoft\Data\SqlClient\SqlUtil.cs</Link> | |||
</Compile> | |||
</Compile> |
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.
</Compile> | |
</Compile> |
@@ -581,7 +584,7 @@ | |||
</Compile> | |||
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\SqlUtil.cs"> | |||
<Link>Microsoft\Data\SqlClient\SqlUtil.cs</Link> | |||
</Compile> | |||
</Compile> |
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.
</Compile> | |
</Compile> |
internal static Exception SynchronousCallMayNotPend() | ||
{ | ||
return new Exception(StringsHelper.GetString(Strings.Sql_InternalError)); | ||
} | ||
|
||
#if NETCOREAPP |
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.
Recent PR #2486 streamlined compilation symbols. You should pull from main and then update this.
#if NETCOREAPP | |
#if NET6_0_OR_GREATER |
Addresses SqlUtil.cs for #1261