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
Our CI pipeline removes all .pdb-s from the publish folder before packaging. After updating Microsoft.Data.SqlClient 2.0.0 our ASP.net core app stopped working and we figure out that Microsoft.Data.SqlClient.SNI.pdb is required in Release\netcoreapp3.1\runtimes\win-x64\native in .deps.json.
Is this .pdb really necessary, or is there a workaround for not requiring it?
The text was updated successfully, but these errors were encountered:
Based on discussions here: #644 (comment), we're planning to remove symbols in .NET Core native (SNI) NuGet. It's not required by driver, they're linked in deps.json from where without them publish doesn't happen. It's different how dotnet sdk handles PDBs for native-runtime v/s .net runtime packages.
Our CI pipeline removes all .pdb-s from the publish folder before packaging. After updating
Microsoft.Data.SqlClient 2.0.0
our ASP.net core app stopped working and we figure out thatMicrosoft.Data.SqlClient.SNI.pdb
is required inRelease\netcoreapp3.1\runtimes\win-x64\native
in.deps.json
.Is this .pdb really necessary, or is there a workaround for not requiring it?
The text was updated successfully, but these errors were encountered: