1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Reflection;
- using System.Resources;
- using System.Runtime.InteropServices;
- // General assembly information
- [assembly: AssemblyProduct("PlugIn1")]
- [assembly: AssemblyTitle("PlugIn1")]
- [assembly: AssemblyDescription("A plug-in for use with the Sandcastle Help File Builder")]
- [assembly: AssemblyCompany("Microsoft")]
- [assembly: AssemblyCopyright(AssemblyInfo.Copyright)]
- [assembly: AssemblyCulture("")]
- #if DEBUG
- [assembly: AssemblyConfiguration("Debug")]
- #else
- [assembly: AssemblyConfiguration("Release")]
- #endif
- [assembly: ComVisible(false)]
- [assembly: CLSCompliant(true)]
- // Resources contained within the assembly are English
- [assembly: NeutralResourcesLanguageAttribute("en")]
- [assembly: AssemblyVersion(AssemblyInfo.ProductVersion)]
- [assembly: AssemblyFileVersion(AssemblyInfo.ProductVersion)]
- [assembly: AssemblyInformationalVersion(AssemblyInfo.ProductVersion)]
- // This defines constants that can be used here and in the custom presentation style export attribute
- internal static partial class AssemblyInfo
- {
- // Product version
- public const string ProductVersion = "1.0.0.0";
- // Assembly copyright information
- public const string Copyright = "Copyright \xA9 2018, Microsoft, All Rights Reserved.";
- }
|