| File: AppInfo\AppInfo.netstandard.cs | Web Access |
| Project: src\src\Essentials\src\Essentials.csproj (Microsoft.Maui.Essentials) |
namespace Microsoft.Maui.ApplicationModel { class AppInfoImplementation : IAppInfo { public string PackageName => throw ExceptionUtils.NotSupportedOrImplementedException; public string Name => throw ExceptionUtils.NotSupportedOrImplementedException; public System.Version Version => Utils.ParseVersion(VersionString); public string VersionString => throw ExceptionUtils.NotSupportedOrImplementedException; public string BuildString => throw ExceptionUtils.NotSupportedOrImplementedException; public void ShowSettingsUI() => throw ExceptionUtils.NotSupportedOrImplementedException; public AppTheme RequestedTheme => AppTheme.Unspecified; public AppPackagingModel PackagingModel => throw ExceptionUtils.NotSupportedOrImplementedException; // Returning the Unknown value for LayoutDirection so that unit tests can work public LayoutDirection RequestedLayoutDirection => LayoutDirection.Unknown; } }