We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Likely as a result of #26175, setting PublishAot does not create pdb files.
Repro With the latest daily SDK, run the following
dotnet new console dotnet publish /p:PublishAot=true -r win-x64 -c Debug
dotnet new console
dotnet publish /p:PublishAot=true -r win-x64 -c Debug
Result directory bin\Debug\net7.0\win-x64\publish does not have a pdb file.
bin\Debug\net7.0\win-x64\publish
The text was updated successfully, but these errors were encountered:
This is more likely the result of dotnet/runtime#70233 where we removed the CopyNativePdb target. Specifically, this has relevant details.
CopyNativePdb
Sorry, something went wrong.
Will keep this open until the fix flows in to the SDK and we can add a test scenario for this
LakshanF
Successfully merging a pull request may close this issue.
Likely as a result of #26175, setting PublishAot does not create pdb files.
Repro
With the latest daily SDK, run the following
dotnet new console
dotnet publish /p:PublishAot=true -r win-x64 -c Debug
Result
directory
bin\Debug\net7.0\win-x64\publish
does not have a pdb file.The text was updated successfully, but these errors were encountered: