RuntimeInfo.cs 367 B

12345678910111213141516
  1. using Avalonia.Platform;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Reflection;
  5. using System.Text;
  6. namespace Avalonia.Shared.PlatformSupport
  7. {
  8. internal partial class StandardRuntimePlatform : IRuntimePlatform
  9. {
  10. public RuntimePlatformInfo GetRuntimeInfo()
  11. {
  12. return new RuntimePlatformInfo();
  13. }
  14. }
  15. }