跳到主要内容
版本:11.0.0

特定平台的.NET

概述

.NET当中的条件编译允许根据某些条件编译或省略代码的不同部分。这对于处理需要在不同平台或开发环境中不同行为的代码时特别有用。

这些方案并不特定于Avalonia,可以用于任何类型的项目。

运行时条件

.NET 6 及更高版本提供了一组在运行时获取操作系统信息的API - OperatingSystem

这个类中常用的一些静态方法包括:

方法描述
IsWindows()指示当前应用程序是否在Windows上运行。
IsLinux()指示当前应用程序是否在Linux上运行。
IsMacOS()指示当前应用程序是否在macOS上运行。
IsAndroid()指示当前应用程序是否在Android上运行。
IsIOS()指示当前应用程序是否在iOS或MacCatalyst上运行。
IsBrowser()指示当前应用程序是否在浏览器中以WASM形式运行。
IsOSPlatform(String)指示当前应用程序是否在指定的平台上运行。

这些方法不需要对项目结构进行任何更改,并且可以在任何地方使用。 缺点是无法在编译时分离平台特定的API,这样就需要在公共的程序集中引用平台特定的依赖项。

这种方法适用于简单的场景,或者希望保持简单的项目结构。在后一种情况下

备注

这是编写针对Linux操作系统的条件.NET代码的唯一可能方法,因为.NET没有专门针对Linux的目标框架。

条件编译

C# 特别地允许使用 #if#elif#else#endif 进行条件编译 - C# 预处理器指令

DEBUG 是一个众所周知的编译时常量。但编写平台特定的代码时它并不是特别有用。根据项目的需要,C# 编译器可能会为每个 操作系统特定的 Target Framework 定义额外的常量:

目标框架常量
net8.0-
net8.0-windowsWINDOWS
net8.0-macosMACOS
net8.0-browserBROWSER
net8.0-iosIOS
net8.0-androidANDROID
net8.0-tizenTIZEN

从上表中,我们可以注意到几点:

  1. 如果项目没有使用任何特定于操作系统的目标Framework,则不会定义这些常量。
  2. 没有针对 LINUX 的常量,因为目前没有 net8.0-linux 的目标框架。请注意,这可能会在未来版本的 .NET 中发生变化。
  3. 此外,net8.0-browser 仅在 .NET 8 SDK 中可用。其他目标框架支持 .NET 6 或更高版本。
备注

类似的方法也可以用于定义 .NET Framework 或 .NET Standard 项目的特殊代码编译,如果需要的话。请访问 Microsoft 跨平台目标 文档以获取更多信息。

实际案例

假设我们想在 C# 代码中使用平台 API。它可以是 Avalonia API、Xamarin API 或其他任何 API。 首先,需要在项目中定义预期的目标框架。为了简单起见,我们在 .csproj 文件中定义三个可能的目标框架 - "net8.0"(默认)、"net8.0-ios" 和 "net8.0-android":

<PropertyGroup>
<TargetFrameworks>net8.0;net8.0-ios;net8.0-android</TargetFrameworks>
</PropertyGroup>

然后可以创建如下方法:

public enum DeviceOrientation
{
Undefined,
Landscape,
Portrait
}

public static DeviceOrientation GetOrientation()
{
#if ANDROID
IWindowManager windowManager = Android.App.Application.Context.GetSystemService(Context.WindowService).JavaCast<IWindowManager>();
SurfaceOrientation orientation = windowManager.DefaultDisplay.Rotation;
bool isLandscape = orientation == SurfaceOrientation.Rotation90 || orientation == SurfaceOrientation.Rotation270;
return isLandscape ? DeviceOrientation.Landscape : DeviceOrientation.Portrait;
#elif IOS
UIInterfaceOrientation orientation = UIApplication.SharedApplication.StatusBarOrientation;
bool isPortrait = orientation == UIInterfaceOrientation.Portrait || orientation == UIInterfaceOrientation.PortraitUpsideDown;
return isPortrait ? DeviceOrientation.Portrait : DeviceOrientation.Landscape;
#else
return DeviceOrientation.Undefined;
#endif
}

平台特定的项目

类似于前面的方法,可以为每个平台创建引导项目,并保留包含主要逻辑和布局的共享项目。例如,默认的 Avalonia.Xplat模板会创建一个包含以下项目的解决方案:

项目目标框架
Project.Sharednet8.0
Project.Desktopnet8.0
Project.Androidnet8.0-android
Project.iOSnet8.0-ios
Project.Browsernet8.0-browser

Windows、macOS 和 Linux的桌面平台项目是统一的一个,而移动和浏览器平台则有自己的项目。 这是Avalonia项目的默认方式。如果需要,开发者也可以将桌面项目拆分为多个项目。 不过需要注意的是,.NET SDK 目前还没有针对Linux的目标框架,因此仍然需要使用通用的 net8.0 目标框架。

通常,当需要任何平台特定的代码时,会在共享项目中创建一个新的接口,并为每个平台提供不同的实现。 之前的示例将如下所示:

Project.Shared IDeviceOrientation.cs
public interface IDeviceOrientation
{
DeviceOrientation GetOrientation();
}
Project.Android AndroidDeviceOrientation.cs
public class AndroidDeviceOrientation : IDeviceOrientation
{
public DeviceOrientation GetOrientation()
{
IWindowManager windowManager = Android.App.Application.Context.GetSystemService(Context.WindowService).JavaCast<IWindowManager>();
SurfaceOrientation orientation = windowManager.DefaultDisplay.Rotation;
bool isLandscape = orientation == SurfaceOrientation.Rotation90 || orientation == SurfaceOrientation.Rotation270;
return isLandscape ? DeviceOrientation.Landscape : DeviceOrientation.Portrait;
}
}
Project.iOS iOSDeviceOrientation.cs
public class iOSDeviceOrientation : IDeviceOrientation
{
public DeviceOrientation GetOrientation()
{
UIInterfaceOrientation orientation = UIApplication.SharedApplication.StatusBarOrientation;
bool isPortrait = orientation == UIInterfaceOrientation.Portrait || orientation == UIInterfaceOrientation.PortraitUpsideDown;
return isPortrait ? DeviceOrientation.Portrait : DeviceOrientation.Landscape;
}
}

每个实现可以使用所选的依赖注入库或静态注册属性进行注册。