AssemblyInfo.cs 972 B

123456789101112131415161718192021222324252627282930
  1. using System.Reflection;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. [assembly: AssemblyTitle("Aether.Graphics")]
  5. [assembly: AssemblyProduct("Aether.Graphics")]
  6. [assembly: AssemblyDescription("")]
  7. [assembly: AssemblyConfiguration("")]
  8. [assembly: AssemblyCompany("")]
  9. [assembly: AssemblyCopyright("Copyright © Kastellanos Nikolaos 2016-2024")]
  10. [assembly: AssemblyTrademark("")]
  11. [assembly: AssemblyCulture("")]
  12. // Version information for an assembly consists of the following four values:
  13. //
  14. // Major Version
  15. // Minor Version
  16. // Build Number
  17. // Revision
  18. //
  19. // You can specify all the values or you can default the Build and Revision Numbers
  20. // by using the '*' as shown below:
  21. // [assembly: AssemblyVersion("1.0.*")]
  22. [assembly: AssemblyVersion("1.4.0.0")]
  23. [assembly: AssemblyFileVersion("1.4.0.0")]
  24. #if PHONE
  25. // Enable NEON/SIMD
  26. [assembly: CodeGeneration(CodeGenerationFlags.EnableFPIntrinsicsUsingSIMD)]
  27. #endif