-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable Source Link's EmbedUntrackedSources in desktop WPF projects #37164
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dotnet-issue-labeler
bot
added
Area-Infrastructure
untriaged
Request triage from a team member
labels
Nov 27, 2023
/azp run |
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
baronfel
reviewed
Nov 28, 2023
src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.SourceLink.props
Outdated
Show resolved
Hide resolved
@KirillOsenkov FYI |
tmat
added
Servicing-consider
and removed
untriaged
Request triage from a team member
labels
Nov 29, 2023
dsplaisted
approved these changes
Nov 29, 2023
KirillOsenkov
approved these changes
Nov 30, 2023
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.
Very nice, thank you!
tmat
changed the title
Disable Source Link in desktop WPF temp projects
Disable Source Link's EmbedUntrackedSources in desktop WPF projects
Dec 6, 2023
rainersigwald
approved these changes
Dec 7, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Adds a workaround for #34438:
Suppress EmbedUntrackedSources set by Source Link for Desktop WPF projects, which produce incorrect
#line
directive in generated .g.cs files under certain circumstances. When EmbedUntrackedSources is enabled it triggers embedding of source files into the PDB, which fails due to the incorrect#line
directives.#36585 tracks the core issue.
Customer Impact
Project with the following properties fails to build with .NET SDK 8:
UseWPF
property totrue
IntermediateOutputPath
Regression?
7.0
Risk
The change sets property that enables the same code path that's already executed in regular build to run in design-time build.
Verification
Packaging changes reviewed?