2

当我构建我的项目时,我有这个错误

/Library/Frameworks/Mono.framework/Versions/5.0.1/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets(5,5):错误MSB3073:命令“xcopy”/Users/max /core/ExternalInterfaces/Betinaction.ExtTransactions/Betinaction.ExtTransactions/bin/Debug/*.dll" "/Users/max/core//../packages/BetInAction.Core.1.0.0/" /Y" 退出代码127. (MSB3073) (Betinaction.ExtTransactions)

这个错误将我移动到这行代码(这一行在代码中的 Exec 标记中): WorkingDirectory="$(OutDir)" Command="$(PostBuildEvent)"

这是该行所在的文件:/Library/Frameworks/Mono.framework/Versions/5.0.1/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets

4

1 回答 1

1

您应该仔细选择在非 Windows 平台上使用的命令。一个例子可以在这里找到,

https://github.com/lextm/obfuscar/blob/master/Console/Obfuscar.Console.csproj#L104

  • rename->mv
  • del->rm

在你的情况下,xcopy- >cp

有关如何使用的信息cp可以在这里找到,

https://developer.apple.com/legacy/library/documentation/Darwin/Reference/ManPages/man1/cp.1.html

于 2017-05-27T01:36:08.117 回答