AssemblyInfo.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. [assembly: AssemblyTitle("ASP.NET Boilerplate - Web Common")]
  8. [assembly: AssemblyDescription("ASP.NET Boilerplate - Web Common Classes")]
  9. [assembly: AssemblyConfiguration("")]
  10. [assembly: AssemblyCompany("Volosoft")]
  11. [assembly: AssemblyProduct("Abp.Web.Common")]
  12. [assembly: AssemblyCopyright("Copyright © 2016")]
  13. [assembly: AssemblyTrademark("")]
  14. [assembly: AssemblyCulture("")]
  15. [assembly: InternalsVisibleTo("Abp.AspNetCore")]
  16. [assembly: InternalsVisibleTo("Abp.Web.Common.Tests")]
  17. [assembly: InternalsVisibleTo("Abp.Web.Tests")]
  18. [assembly: InternalsVisibleTo("Abp.Web.Mvc")]
  19. [assembly: InternalsVisibleTo("Abp.Web.Api")]
  20. // Setting ComVisible to false makes the types in this assembly not visible
  21. // to COM components. If you need to access a type in this assembly from
  22. // COM, set the ComVisible attribute to true on that type.
  23. [assembly: ComVisible(false)]
  24. // The following GUID is for the ID of the typelib if this project is exposed to COM
  25. [assembly: Guid("883f1591-5b8e-4d5d-85de-ed96069f2a13")]
  26. // Version information for an assembly consists of the following four values:
  27. //
  28. // Major Version
  29. // Minor Version
  30. // Build Number
  31. // Revision
  32. //
  33. // You can specify all the values or you can default the Build and Revision Numbers
  34. // by using the '*' as shown below:
  35. // [assembly: AssemblyVersion("1.0.*")]