Skip to content
Snippets Groups Projects
AssemblyInfo.cs 1.12 KiB
Newer Older
  • Learn to ignore specific revisions
  • using System.Reflection;
    using System.Runtime.InteropServices;
    
    // General Information about an assembly is controlled through the following 
    // set of attributes. Change these attribute values to modify the information
    // associated with an assembly.
    
    [assembly: AssemblyTitle("Chrome Developer Tools")]
    
    [assembly: AssemblyDescription("Contains the classes and utilities used to interact with the Chrome Developer Tools")]
    
    [assembly: AssemblyConfiguration("")]
    
    [assembly: AssemblyCompany("MasterDevs")]
    [assembly: AssemblyProduct("MasterDevs.ChromeWebTools")]
    
    [assembly: AssemblyCopyright("Copyright ©  2015")]
    [assembly: AssemblyTrademark("")]
    [assembly: AssemblyCulture("")]
    
    // Setting ComVisible to false makes the types in this assembly not visible 
    // to COM components.  If you need to access a type in this assembly from 
    // COM, set the ComVisible attribute to true on that type.
    [assembly: ComVisible(false)]
    
    // The following GUID is for the ID of the typelib if this project is exposed to COM
    [assembly: Guid("e7da0b93-c53b-4b4e-a873-88490c1e61cc")]
    
    
    [assembly: AssemblyVersion("1.0.1")]
    
    [assembly: AssemblyFileVersion("1.0.1")]