AssemblyInfo.cs 1.1 KB

123456789101112131415161718192021222324
  1. using System.Reflection;
  2. using System.Resources;
  3. using System.Runtime.CompilerServices;
  4. using System.Runtime.InteropServices;
  5. // General Information about an assembly is controlled through the following
  6. // set of attributes. Change these attribute values to modify the information
  7. // associated with an assembly.
  8. [assembly: AssemblyTitle("Emby.Server.Implementations")]
  9. [assembly: AssemblyDescription("")]
  10. [assembly: AssemblyConfiguration("")]
  11. [assembly: AssemblyCompany("Jellyfin Project")]
  12. [assembly: AssemblyProduct("Jellyfin Server")]
  13. [assembly: AssemblyCopyright("Copyright © 2019 Jellyfin Contributors. Code released under the GNU General Public License")]
  14. [assembly: AssemblyTrademark("")]
  15. [assembly: AssemblyCulture("")]
  16. [assembly: NeutralResourcesLanguage("en")]
  17. [assembly: InternalsVisibleTo("Jellyfin.Server.Implementations.Tests")]
  18. [assembly: InternalsVisibleTo("Emby.Server.Implementations.Fuzz")]
  19. // Setting ComVisible to false makes the types in this assembly not visible
  20. // to COM components. If you need to access a type in this assembly from
  21. // COM, set the ComVisible attribute to true on that type.
  22. [assembly: ComVisible(false)]