Crossplatform App der Caritas (Versuch).
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

AssemblyInfo.cs 1.1KB

123456789101112131415161718192021222324252627282930
  1. using System.Reflection;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. using Android.App;
  5. // General Information about an assembly is controlled through the following
  6. // set of attributes. Change these attribute values to modify the information
  7. // associated with an assembly.
  8. [assembly: AssemblyTitle("CaritasApp.Android")]
  9. [assembly: AssemblyDescription("")]
  10. [assembly: AssemblyConfiguration("")]
  11. [assembly: AssemblyCompany("")]
  12. [assembly: AssemblyProduct("CaritasApp.Android")]
  13. [assembly: AssemblyCopyright("Copyright © 2014")]
  14. [assembly: AssemblyTrademark("")]
  15. [assembly: AssemblyCulture("")]
  16. [assembly: ComVisible(false)]
  17. // Version information for an assembly consists of the following four values:
  18. //
  19. // Major Version
  20. // Minor Version
  21. // Build Number
  22. // Revision
  23. [assembly: AssemblyVersion("1.0.0.0")]
  24. [assembly: AssemblyFileVersion("1.0.0.0")]
  25. // Add some common permissions, these can be removed if not needed
  26. [assembly: UsesPermission(Android.Manifest.Permission.Internet)]
  27. [assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)]