1234567891011121314151617181920 |
- using System.Reflection;
- using System.Resources;
- using System.Runtime.CompilerServices;
- 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("Jint CLI")]
- [assembly: AssemblyDescription("Javascript Interpreter for .NET")]
- [assembly: AssemblyConfiguration("")]
- [assembly: AssemblyCompany("")]
- [assembly: AssemblyProduct("Jint")]
- [assembly: AssemblyCopyright("Copyright © Sébastien Ros 2013")]
- [assembly: AssemblyTrademark("")]
- [assembly: AssemblyCulture("")]
- [assembly: NeutralResourcesLanguage("en")]
- [assembly: AssemblyVersion("2.9.1")]
- [assembly: AssemblyFileVersion("2.9.1")]
|