We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8b13ba commit 8bb266cCopy full SHA for 8bb266c
src/windows/find_tools.rs
@@ -363,9 +363,11 @@ mod impl_ {
363
) -> Option<Tool> {
364
// Early return if the environment isn't one that is known to have compiler toolsets in PATH
365
// `VCINSTALLDIR` is set from vcvarsall.bat (developer command prompt)
366
- // `VisualStudioDir` is set by msbuild when invoking custom build steps
+ // `VisualStudioDir` is set by Visual Studio when invoking custom build steps
367
+ // `VSTEL_MSBuildProjectFullPath` is set by msbuild when invoking custom build steps
368
if env_getter.get_env("VCINSTALLDIR").is_none()
369
&& env_getter.get_env("VisualStudioDir").is_none()
370
+ && env_getter.get_env("VSTEL_MSBuildProjectFullPath").is_none()
371
{
372
return None;
373
}
0 commit comments