AssemblyVersionInfo.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. /*************************************************************************************
  2. Extended WPF Toolkit
  3. Copyright (C) 2007-2013 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, controls, and fast professional support,
  7. pick up the Plus Edition at http://xceed.com/wpf_toolkit
  8. Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
  9. ***********************************************************************************/
  10. #pragma warning disable 0436
  11. [assembly: System.Reflection.AssemblyVersion( _XceedVersionInfo.Version )]
  12. #pragma warning restore 0436
  13. internal static class _XceedVersionInfo
  14. {
  15. [System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
  16. public const string BaseVersion = "2.1";
  17. [System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
  18. public const string Version = BaseVersion +
  19. ".0.0";
  20. [System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
  21. public const string PublicKeyToken = "ba83ff368b7563c6";
  22. }