AssemblyInfo.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System.Resources;
  2. using System.Reflection;
  3. using System.Runtime.CompilerServices;
  4. using System.Runtime.InteropServices;
  5. using Avalonia.Gtk3;
  6. using Avalonia.Platform;
  7. // General Information about an assembly is controlled through the following
  8. // set of attributes. Change these attribute values to modify the information
  9. // associated with an assembly.
  10. [assembly: AssemblyTitle("Avalonia.Gtk3")]
  11. [assembly: AssemblyDescription("")]
  12. [assembly: AssemblyConfiguration("")]
  13. [assembly: AssemblyCompany("")]
  14. [assembly: AssemblyProduct("Avalonia.Gtk3")]
  15. [assembly: AssemblyCopyright("Copyright © 2016")]
  16. [assembly: AssemblyTrademark("")]
  17. [assembly: AssemblyCulture("")]
  18. [assembly: NeutralResourcesLanguage("en")]
  19. // Version information for an assembly consists of the following four values:
  20. //
  21. // Major Version
  22. // Minor Version
  23. // Build Number
  24. // Revision
  25. //
  26. // You can specify all the values or you can default the Build and Revision Numbers
  27. // by using the '*' as shown below:
  28. // [assembly: AssemblyVersion("1.0.*")]
  29. [assembly: AssemblyVersion("1.0.0.0")]
  30. [assembly: AssemblyFileVersion("1.0.0.0")]
  31. [assembly: ExportWindowingSubsystem(OperatingSystemType.WinNT, 2, "GTK3", typeof(Gtk3Platform), nameof(Gtk3Platform.Initialize))]
  32. [assembly: ExportWindowingSubsystem(OperatingSystemType.Linux, 1, "GTK3", typeof(Gtk3Platform), nameof(Gtk3Platform.Initialize))]
  33. [assembly: ExportWindowingSubsystem(OperatingSystemType.OSX, 2, "GTK3", typeof(Gtk3Platform), nameof(Gtk3Platform.Initialize))]