OSX 中的 monodevelop/monotouch 安装文件夹
我已经在 monodevelop 中创建了一个 monotouch 项目,如果我用记事本(或 OSX 中的任何内容)打开它,我可以看到 msbuild 文件导入任务 导入项目=“$(MSBuildBinPath)\Microsoft.CSharp.targets” 和 Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets"
这些文件位于 OSX 中的什么位置? 我试图了解 monodevelop 中的构建过程如何工作,以使其按照我想要的方式运行。 我可能不需要修改这些文件,但我想了解这些文件是如何的。
I've created a monotouch project in monodevelop, and if I open it with notepad(or whatever that is in OSX), I can see the msbuild file import tasks from
Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets"
and
Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets"
Where are these files located in OSX?
I'm trying to understand how the build process work in monodevelop to make it behave as I want.
I probably do not need to modify those files, but I want to understand how those files are.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Mac 上,假设您使用默认的 Mono 框架安装程序,并且项目的 ToolsVersion 为 3.5,则
$(MSBuildToolsPath)
和$(MSBuildBinPath)
都是 < code>/Library/Frameworks/Mono.framework/Versions/Current/lib/mono/3.5然而,这些实际上并不适用于 MonoTouch,原因有两个:
您可以看到 MonoTouch 构建代码的 MonoDevelop 端 在 MD 源存储库中。
On Mac, assuming you're using the default Mono framework installer, and assuming the project has a ToolsVersion of 3.5,
$(MSBuildToolsPath)
and$(MSBuildBinPath)
are both/Library/Frameworks/Mono.framework/Versions/Current/lib/mono/3.5
However, these don't actually apply to MonoTouch, for two reasons:
You can see the MonoDevelop side of the MonoTouch build code in the MD source repository.