- Notifications
You must be signed in to change notification settings - Fork311
Cleanup | Interop Path Links#3338
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
src/Microsoft.Data.SqlClient/netcore/src/Microsoft.Data.SqlClient.csproj OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
Co-authored-by: Edward Neal <55035479+edwardneal@users.noreply.github.com>
codecovbot commentedMay 9, 2025 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@## main #3338 +/- ##==========================================- Coverage 65.07% 64.29% -0.78%========================================== Files 298 298 Lines 65515 65517 +2 ==========================================- Hits 42634 42126 -508- Misses 22881 23391 +510
Flags with carried forward coverage won't be shown.Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
1aba9e3
intomainUh oh!
There was an error while loading.Please reload this page.
Description: Very small 🥔🥔, but it was driving me crazy once I saw it. Basically, some of the interop files in the netcore project had paths that were doubly nested. This PR removes those doubly nested paths.
ie:
Interop\Windows\NtDll\Interop\Windows\NtDll\file.cs
becomes
Interop\Windows\Ntdll\file.cs
This also fixes a mistake for ObjectAttributeFlags. Both ObjectAttributes and ObjectAttributeFlags were being linked as "ObjectAttributes". Fixed that as well.