| 12345678910111213141516171819202122232425262728 |
- using System;
- using System.Reflection;
- 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( "Xceed Words for .NET - Examples" )]
- [assembly: AssemblyDescription( "This assembly contains the Examples for Xceed Words for .NET." )]
-
- [assembly: AssemblyCompany( "Xceed Software Inc." )]
- [assembly: AssemblyProduct( "Xceed Words for .NET" )]
- [assembly: AssemblyCopyright( "Copyright (C) Xceed Software Inc. 2009-2017" )]
- [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)]
-
- #pragma warning disable 1699
- [assembly: AssemblyDelaySign( false )]
- [assembly: AssemblyKeyFile( @"..\..\..\sn.snk" )]
- [assembly: AssemblyKeyName( "" )]
- #pragma warning restore 1699
-
|