-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Add EmbedAllSources build task parameter #23656
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,6 +98,7 @@ | |
DelaySign="$(DelaySign)" | ||
DisabledWarnings="$(NoWarn)" | ||
DocumentationFile="@(DocFileItem)" | ||
EmbedAllSources="$(EmbedAllSources)" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe it should say EmbedAllSource or EmbedAllSourceFiles. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (F# could introduce an alternative property, but then that would just add complexity that's not worth it). |
||
EmbeddedFiles="@(EmbeddedFiles)" | ||
EmitDebugInformation="$(DebugSymbols)" | ||
EnvironmentVariables="$(CscEnvironment)" | ||
|
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.
Does this make sense doing it this way? For the MSBuild experience, I assume you'd just write:
or something.
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.
The compiler already has
/embed
command line option. That's much more efficient since we avoid copying all Compile items.