error MSB3073: How do I fix this?

前端 未结 5 645
忘掉有多难
忘掉有多难 2021-02-08 03:02
3>C:\\Program Files (x86)\\MSBuild\\Microsoft.Cpp\\v4.0\\Microsoft.CppCommon.targets(113,5): error MSB3073: The command \"copy \"C:\\Users\\jlee\\Desktop\\10_IPG2.7_4         


        
5条回答
  •  终归单人心
    2021-02-08 03:30

    For anyone else that comes across this question my problem was that the target directory contained spaces i.e.

    C:\Users\Administrator\Documents\Visual Studio 2017\projects\blah

    So for me the solution was to wrap $(TargetDir) in double quotes i.e.

    copy ..\resources\* "$(TargetDir)" /Y

提交回复
热议问题