系統:Windows 10html
IDE:VS2015spa
任務:集成 YASM 1.3.net
官網:http://yasm.tortall.net/Download.htmlcode
照作後,獲得一個錯誤:orm
error MSB3721: The command "......" exited with code 1.xml
直接跑命令則提示:htm
vsyasm: FATAL: unrecognized object format `Win32'get
緣由:區分大小寫……應該用 win32 而不是 Win32,您能夠改一下工程平臺的名字,但默認都是 Win32,不太方便,因此咱們要對 vsyasm.props 進行改造:it
<CommandLineTemplate>"$(YasmPath)"vsyasm.exe -Xvc -f $(Platform) [AllOptions] [AdditionalOptions] [Inputs]</CommandLineTemplate>
替換爲:io
<CommandLineTemplate>"$(YasmPath)vsyasm.exe" -Xvc -f $(Platform.ToLower()) [AllOptions] [AdditionalOptions] [Inputs]</CommandLineTemplate>
或者:
<CommandLineTemplate>"$(YasmPath)vsyasm.exe" -Xvc -f win$(PlatformArchitecture) [AllOptions] [AdditionalOptions] [Inputs]</CommandLineTemplate>
保存即搞定,連 VS 都不須要重啓。