| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /*************************************************************************************
-
- DocX – DocX is the community edition of Xceed Words for .NET
-
- Copyright (C) 2009-2016 Xceed Software Inc.
-
- This program is provided to you under the terms of the Microsoft Public
- License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
-
- For more features and fast professional support,
- pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/
-
- ***********************************************************************************/
-
- 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" )]
- [assembly: AssemblyDescription( "This assembly implements the classes 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)]
-
-
- [assembly: InternalsVisibleTo( "UnitTests" + ",PublicKey=" +
- "0024000004800000940000000602000000240000525341310004000001000100d59d8147eb2015" +
- "ca98a92da860fd766d101271d8c2f545894870fd6183255737d79347bbf5250291ae75651e1150" +
- "1b7452ee003b80b936614cdda51db8eb6f8fde913e67d45395b480a992be17bf04744a7fe803ea" +
- "131b925dcf84a73d22264352eca7c3fcf9387f3eee1d60ac7974f04866e6c72928dc0609abe341" +
- "f92cbfb5")]
-
-
- #pragma warning disable 1699
- [assembly: AssemblyDelaySign( false )]
- [assembly: AssemblyKeyFile( @"..\..\sn.snk" )]
- [assembly: AssemblyKeyName( "" )]
- #pragma warning restore 1699
|