MonoDevelop 是否支持项目 (csproj) 文件中的自定义目标?
例如,将其添加到 csproj
<Target Name="BeforeBuild">
<Exec Command="foo.exe arg1 arg2" />
</Target>
对我来说,它似乎忽略了它们
For example adding this to a csproj
<Target Name="BeforeBuild">
<Exec Command="foo.exe arg1 arg2" />
</Target>
For me it seems to be ignoring them
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在选项屏幕中将其打开
You can turn it on in the options screen
MD 通过将 MSBuild 项目映射到其旧的内部构建引擎来支持 MSBuild 项目,该引擎无法支持像这样的任意 MSBuild 构造。
有实验性支持使用 MSBuild/xbuild 作为构建引擎,您可以在 MD 首选项中启用此功能。
MD supports MSBuild projects by mapping them into its old internal build engine, which can't support arbitrary MSBuild constructs like this.
There is experimental support to use MSBuild/xbuild as the build engine, and you can enable this in MD Preferences.