Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

AssemblyVersionInfo.cs 1.2KB

123456789101112131415161718192021222324252627282930
  1. /*************************************************************************************
  2. DocX – DocX is the community edition of Xceed Words for .NET
  3. Copyright (C) 2009-2016 Xceed Software Inc.
  4. This program is provided to you under the terms of the Microsoft Public
  5. License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
  6. For more features and fast professional support,
  7. pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/
  8. ***********************************************************************************/
  9. #pragma warning disable 0436
  10. [assembly: System.Reflection.AssemblyVersion( _XceedVersionInfo.Version )]
  11. #pragma warning restore 0436
  12. internal static class _XceedVersionInfo
  13. {
  14. [System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
  15. public const string BaseVersion = "1.3";
  16. [System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
  17. public const string Version = BaseVersion +
  18. ".0.0";
  19. [System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
  20. public const string PublicKeyToken = "ba83ff368b7563c6";
  21. }