You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the dotnet/pinvoke project, the NtDll project tries to declare its own CloseHandleSafeHandle type even though it is defined in Kernel32, which it has a reference to.
Embed PDBs for all local builds
This ensures that if you build a dll and copy it somewhere, then build again, you haven't lost the ability to debug the original dll because it carries the pdb with it wherever it goes.
We do not embed the pdb in the official builds however because the official builds will archive the pdb so it isn't lost, and it would unnecessarily bloat the assembly.
In the dotnet/pinvoke project, the NtDll project tries to declare its own
CloseHandleSafeHandle
type even though it is defined in Kernel32, which it has a reference to.See also #43
The text was updated successfully, but these errors were encountered: