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
Feature/toolchain msbuild cmd #7941
Feature/toolchain msbuild cmd #7941
Conversation
conans/__init__.py
Outdated
@@ -4,7 +4,7 @@ | |||
from conans.client.build.cmake import CMake | |||
from conans.client.toolchain.cmake import CMakeToolchain | |||
from conans.client.toolchain.make import MakeToolchain | |||
from conans.client.toolchain.msbuild import MSBuildToolchain | |||
from conans.client.toolchain.msbuild import MSBuildToolchain, MSBuildCmd |
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 name of the tool is important. We could dynamically change the MSBuild helper as we do with CMake, but I am not convinced about that approach, so I am suggesting a new helper. But we can discuss.
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.
I am fine with this, just questions for my own confirmation. I would like to know your concerns about following the same "replacement" trick as in the CMake helper.
Co-authored-by: Javier G. Sogo <jgsogo@gmail.com>
Co-authored-by: Javier G. Sogo <jgsogo@gmail.com>
Changelog: Feature: Provide a
MSBuildCmd
helper class that encapsulates calling MSBuild.Docs: conan-io/docs#1907
Close #7824
Close #7606