GlobalAssemblyVersion.cs 504 B

12345678910111213141516
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT License.
  3. // See the LICENSE file in the project root for more information.
  4. using System.Reflection;
  5. #if WINDOWS_UWP
  6. [assembly: AssemblyVersion("3.0.4000.0")]
  7. #elif NET472 || NETSTANDARD2_0
  8. [assembly: AssemblyVersion("3.0.6000.0")]
  9. #else // this is here to prevent the build system from complaining. It should never be hit
  10. [assembly: AssemblyVersion("invalid")]
  11. #endif