AssemblyInfo.cs 1.2 KB

123456789101112131415161718192021222324252627282930
  1. using System.Reflection;
  2. using System.Runtime.CompilerServices;
  3. using Android.App;
  4. // Information about this assembly is defined by the following attributes.
  5. // Change them to the values specific to your project.
  6. [assembly: AssemblyTitle("MonoGame.Samples.Primitives.Android")]
  7. [assembly: AssemblyDescription("")]
  8. [assembly: AssemblyConfiguration("")]
  9. [assembly: AssemblyCompany("Savage Software Solutions Ltd.")]
  10. [assembly: AssemblyProduct("")]
  11. [assembly: AssemblyCopyright("Savage Software Solutions Ltd.")]
  12. [assembly: AssemblyTrademark("")]
  13. [assembly: AssemblyCulture("")]
  14. // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
  15. // The form "{Major}.{Minor}.*" will automatically update the build and revision,
  16. // and "{Major}.{Minor}.{Build}.*" will update just the revision.
  17. [assembly: AssemblyVersion("1.0.*")]
  18. // The following attributes are used to specify the signing key for the assembly,
  19. // if desired. See the Mono documentation for more information about signing.
  20. //[assembly: AssemblyDelaySign(false)]
  21. //[assembly: AssemblyKeyFile("")]
  22. // This app uses the internet, this can be removed if not needed
  23. [assembly: UsesPermission("android.permission.INTERNET")]