-
Notifications
You must be signed in to change notification settings - Fork 993
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
msbuild temp props in build folder #4113
msbuild temp props in build folder #4113
Conversation
maybe add a check in the existing tests to check file is generated in the build folder now using a custom |
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.
Looks good!
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.
Please remove tmp_file dead code and merge.
self.build_env.parallel = parallel | ||
|
||
with tools.environment_append(self.build_env.vars): | ||
# Path for custom properties file | ||
props_file_contents = self._get_props_file_contents() | ||
with tmp_file(props_file_contents) as props_file_path: |
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 tmp_file context manager is now dead code, please remove it.
…an into feature/msbuild_prop_in_build
…build msbuild temp props in build folder
Changelog: Fix: The property file that the
MSBuild()
is now generated in thebuild_folder
instead of a temporary folder to allow more reproducible builds.Docs: conan-io/docs#980
Closes #4085
PENDING DOCS