AssemblyInfo.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. using System.Reflection;
  2. using System.Runtime.InteropServices;
  3. [assembly: AssemblyTitle("Windows Service Wrapper")]
  4. [assembly: AssemblyDescription("Allows arbitrary process to run as a Windows service by wrapping it")]
  5. [assembly: AssemblyConfiguration("")]
  6. [assembly: AssemblyCompany("CloudBees, Inc.")]
  7. [assembly: AssemblyProduct("Windows Service Wrapper")]
  8. [assembly: AssemblyCopyright("Copyright 2008-2013 Sun Microsystems, Inc., CloudBees, Inc.")]
  9. [assembly: AssemblyTrademark("")]
  10. [assembly: AssemblyCulture("")]
  11. // Setting ComVisible to false makes the types in this assembly not visible
  12. // to COM components. If you need to access a type in this assembly from
  13. // COM, set the ComVisible attribute to true on that type.
  14. [assembly: ComVisible(false)]
  15. // The following GUID is for the ID of the typelib if this project is exposed to COM
  16. [assembly: Guid("59ce18df-cacb-4360-bb80-798bd6459ca3")]
  17. // Version information for an assembly consists of the following four values:
  18. //
  19. // Major Version
  20. // Minor Version
  21. // Build Number
  22. // Revision
  23. //
  24. // You can specify all the values or you can default the Build and Revision Numbers
  25. // by using the '*' as shown below:
  26. // [assembly: AssemblyVersion("1.0.*")]
  27. [assembly: AssemblyVersion("1.17.0.0")]
  28. [assembly: AssemblyFileVersion("1.17.0.0")]