-
Notifications
You must be signed in to change notification settings - Fork 866
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
Provide option for msbuild properties #1549
Conversation
@@ -38,7 +38,7 @@ public BuildInfo GetValidConfig(IEnumerable<string> inputProjects) | |||
return GetConfig(key); | |||
} | |||
|
|||
public void SaveToCache(IEnumerable<string> inputProjects, IDictionary<string, List<string>> containedFiles, DateTime triggeredTime, string outputFolder, IList<string> fileRelativePaths, bool shouldSkipMarkup) | |||
public void SaveToCache(IEnumerable<string> inputProjects, IDictionary<string, List<string>> containedFiles, DateTime triggeredTime, string outputFolder, IList<string> fileRelativePaths, bool shouldSkipMarkup, IDictionary<string, string> msbuildProperties) |
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.
create a class for parameters?
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.
will do refactor later
* Provide option for msbuild properties * Update RELEASENOTE.md
Does this Issue perchance cover preprocessor symbol handling as suggested in #1518?
We have some APIs that are only generated for certain builds where certain Preprocessor Symbols are defined. It would be awesome if the same symbols specified when building assemblies could similarly affect the generated documentation (i.e. make generated documentation content match the generated code content)... |
for #1518 & #1254