AssemblyInfo.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. using System.Reflection;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. // General Information about an assembly is controlled through the following
  5. // set of attributes. Change these attribute values to modify the information
  6. // associated with an assembly.
  7. using Abp;
  8. [assembly: AssemblyTitle("ASP.NET Boilerplate")]
  9. [assembly: AssemblyDescription("ASP.NET Boilerplate")]
  10. [assembly: AssemblyConfiguration("")]
  11. [assembly: AssemblyCompany("Volosoft")]
  12. [assembly: AssemblyProduct("Abp")]
  13. [assembly: AssemblyCopyright("Copyright © 2016")]
  14. [assembly: AssemblyTrademark("")]
  15. [assembly: AssemblyCulture("")]
  16. [assembly: InternalsVisibleTo("Abp.Application")]
  17. [assembly: InternalsVisibleTo("Abp.EntityFramework")]
  18. [assembly: InternalsVisibleTo("Abp.EntityFrameworkCore")]
  19. [assembly: InternalsVisibleTo("Abp.NHibernate")]
  20. [assembly: InternalsVisibleTo("Abp.Web.Common")]
  21. [assembly: InternalsVisibleTo("Abp.AspNetCore")]
  22. [assembly: InternalsVisibleTo("Abp.Owin")]
  23. [assembly: InternalsVisibleTo("Abp.Web")]
  24. [assembly: InternalsVisibleTo("Abp.Web.Api")]
  25. [assembly: InternalsVisibleTo("Abp.Web.Mvc")]
  26. [assembly: InternalsVisibleTo("Abp.Web.Resources")]
  27. [assembly: InternalsVisibleTo("Abp.Specifications")]
  28. [assembly: InternalsVisibleTo("Abp.Dapper")]
  29. [assembly: InternalsVisibleTo("Abp.Tests")]
  30. [assembly: InternalsVisibleTo("Abp.EntityFramework.Tests")]
  31. [assembly: InternalsVisibleTo("Abp.EntityFrameworkCore.Tests")]
  32. [assembly: InternalsVisibleTo("Abp.RedisCache.Tests")]
  33. [assembly: InternalsVisibleTo("Abp.Web.Tests")]
  34. [assembly: InternalsVisibleTo("Abp.Web.Api.Tests")]
  35. [assembly: InternalsVisibleTo("Abp.Zero.Common")]
  36. [assembly: InternalsVisibleTo("Abp.Zero.Ldap")]
  37. [assembly: InternalsVisibleTo("Abp.Zero")]
  38. [assembly: InternalsVisibleTo("Abp.Zero.EntityFramework")]
  39. [assembly: InternalsVisibleTo("Abp.ZeroCore")]
  40. [assembly: InternalsVisibleTo("Abp.ZeroCore.EntityFrameworkCore")]
  41. // Setting ComVisible to false makes the types in this assembly not visible
  42. // to COM components. If you need to access a type in this assembly from
  43. // COM, set the ComVisible attribute to true on that type.
  44. [assembly: ComVisible(false)]
  45. // The following GUID is for the ID of the typelib if this project is exposed to COM
  46. [assembly: Guid("7b50eb47-4993-4a14-b65c-b61714a607b9")]
  47. // Version information for an assembly consists of the following four values:
  48. //
  49. // Major Version
  50. // Minor Version
  51. // Build Number
  52. // Revision
  53. //
  54. // You can specify all the values or you can default the Build and Revision Numbers
  55. // by using the '*' as shown below:
  56. // [assembly: AssemblyVersion("1.0.*")]