Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.7k views
in Technique[技术] by (71.8m points)

bash - `msbuild` command not found, but `msbuild.exe` works fine

I run MSys/Bash as distributed in Git for Windows. I added the folder C:WindowsMicrosoft.NETFrameworkv4.0.30319 to my path, so I could run msbuild but it doesn't work

$ msbuild
C:Program Files (x86)Gitinsh.exe: msbuild: command not found

Yet msbuild.exe does:

$ msbuild.exe
Microsoft (R) Build Engine version 4.0.30319.17929

Yet the command explorer resolves fine. What's going on?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It's a bug in MSys where the same name is shared by a folder and a file (minus the extension). In this case:

  • File C:WindowsMicrosoft.NETFrameworkv4.0.30319MSBuild.exe
  • Folder C:WindowsMicrosoft.NETFrameworkv4.0.30319MSBuild

You'll have to workaround by writing msbuild.exe


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...