`

MSBuild命令行编译Xamarin 项目

阅读更多
Xamarin 平台:

  • C# language – 使用C#语言构建应用程序
  • Mono .NET framework – 微软的跨平台框架
  • Compiler – 根据不同平台生成不同产品的编译器
  • IDE tools – 集成开发环境,包含了创建,构建,部署,编译等。


Compilation
我们先看一下官网的描述:

The C# source makes its way into a native app in very different ways on each platform:

iOS – C# is ahead-of-time (AOT) compiled to ARM assembly language. The .NET framework is included, with unused classes being stripped out during linking to reduce the application size. Apple does not allow runtime code generation on iOS, so some language features are not available (see Xamarin.iOS Limitations ).
Android – C# is compiled to IL and packaged with MonoVM + JIT’ing. Unused classes in the framework are stripped out during linking. The application runs side-by-side with Java/ART (Android runtime) and interacts with the native types via JNI (see Xamarin.Android Limitations ).
Windows Phone – C# is compiled to IL and executed by the built-in runtime, and does not require Xamarin tools. Designing Windows Phone applications following Xamarin’s guidance makes it simpler to re-use the code on iOS and Android.

先学习下Android的编译过程,可以对比下java语言开发的Android应用程序:

java开发的Android应用程序编译执行过程:
Java ---(JavaC)----> .class ---> JVM load class ---> main 方法执行

Xamarin平台C#应用程序编译执行过程:
C#(.cs文件) ---(C# complier)---> IL  --->  MonoVM + JIT execute

C# complier:
gmcs: compiler to target the 2.0 mscorlib.
smcs: compiler to target the 2.1 mscorlib, to build Moonlight applications.
dmcs: compiler to target the 4.0 mscorlib.

Xamarin 编译打包可执行程序:

先看一下官网介绍:
The Xamarin.Android build process is based on MSBuild, which is also the project file format used by Xamarin Studio and Visual Studio. * Ordinarily users will not need to edit the MSBuild files by hand* - the IDE creates fully functional projects and updates them with any changes made, and automatically invoke build targets as needed.

Advanced users may wish to do things not supported by the IDE's GUI, so the build process is customisable by editing the project file directly. This page documents only the Xamarin.Android-specific features and customizations - many more things are possible with the normal MSBuild items, properties and targets.

Windows 使用MSBuild, OS X 使用xbuild

Windows编译打包:
1. 确保环境已安装好 Visual Studio, Mono for Android SDK等
2. 在Xamarin创建的工程目录里找到后缀为csproj 的文件 XXX.csproj
3. 找到Mono提供的MSBuild.exe
备注:以下是我寻找到的方法:打开 XXX.csproj 寻找 <Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />

在文件夹里搜索 Xamarin.Android.CSharp.targets 搜索到在MSBuild同级目录里找到了 C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe
4. 打开命令行,执行命令编译打包:
"C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe"  /t:SignAndroidPackage Path\To\Your\XXX.csproj

打包完成后可以看到工程的\bin\Debug 文件夹下找到签名和未签名的apk
如果需要打包Release版本可以加上字段 /p:Configuration=Release

参考链接:
Xamarin guide
https://developer.xamarin.com/guides/cross-platform/application_fundamentals/building_cross_platform_applications/part_1_-_understanding_the_xamarin_mobile_platform/
https://developer.xamarin.com/guides/android/under_the_hood/build_process/

MSBuild 命令:
https://msdn.microsoft.com/en-us/library/ms164311.aspx
0
6
分享到:
评论

相关推荐

    c#自动打包APK

    8. **自动化打包**:为了实现自动化打包,可以编写脚本或利用Visual Studio的MSBuild命令行工具。在脚本中指定项目路径、输出目录、签名信息等参数,运行脚本即可完成自动打包。 9. **测试与部署**:打包完成后,应...

    使用Visual Studio和Nant构建Xamarin.Android应用程序

    在这个例子中,`xbuild`是用于构建Xamarin项目的命令行工具,`/t:PackageForAndroid`目标会创建APK文件。 最后,为了运行NAnt脚本,只需在命令行中输入`nant`,并指定要执行的目标,如`nant compile package`。 ...

    修复重编译版DevExpress样例

    批处理文件的内容可能包括设置环境变量、导航到特定目录、调用MSBuild或其他编译工具来重建解决方案,确保开发者可以快速地获取到修复后或更新的示例代码。 其次,"ReplPKTDemos.exe"可能是一个可执行文件,用于...

    .NET C# Tools.zip

    9. **MSBuild**: 微软的构建工具,用于编译C#项目和解决依赖关系。随着.NET Core的发展,dotnet CLI逐渐取代了部分MSBuild的功能。 10. **Unity**: 一个流行的跨平台游戏引擎,支持C#脚本,广泛应用于游戏开发、...

    XamlPreprocessor:允许使用特殊注释编辑 XML 文件的预处理器

    一个命令行实用程序 + MSBuild 任务,用于启用条件编译,如 XAML 文件中的指令。 兼容 Visual Studio 2010+ 和 Xamarin Studio。 为什么? 在 Windows Phone、Windows 8 和 10 应用程序之间共享 UI 代码 使用条件...

Global site tag (gtag.js) - Google Analytics