AssemblyInfo.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #region Copyright notice and license
  2. // Copyright 2020 The gRPC Authors
  3. //
  4. // Licensed under the Apache License, Version 2.0 (the "License");
  5. // you may not use this file except in compliance with the License.
  6. // You may obtain a copy of the License at
  7. //
  8. // http://www.apache.org/licenses/LICENSE-2.0
  9. //
  10. // Unless required by applicable law or agreed to in writing, software
  11. // distributed under the License is distributed on an "AS IS" BASIS,
  12. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. // See the License for the specific language governing permissions and
  14. // limitations under the License.
  15. #endregion
  16. using System.Reflection;
  17. using System.Runtime.CompilerServices;
  18. using System.Runtime.InteropServices;
  19. using Android.App;
  20. // General Information about an assembly is controlled through the following
  21. // set of attributes. Change these attribute values to modify the information
  22. // associated with an assembly.
  23. [assembly: AssemblyTitle("HelloworldXamarin.Android")]
  24. [assembly: AssemblyDescription("")]
  25. [assembly: AssemblyConfiguration("")]
  26. [assembly: AssemblyCompany("")]
  27. [assembly: AssemblyProduct("HelloworldXamarin.Android")]
  28. [assembly: AssemblyCopyright("Copyright © 2020")]
  29. [assembly: AssemblyTrademark("")]
  30. [assembly: AssemblyCulture("")]
  31. [assembly: ComVisible(false)]
  32. // Version information for an assembly consists of the following four values:
  33. //
  34. // Major Version
  35. // Minor Version
  36. // Build Number
  37. // Revision
  38. [assembly: AssemblyVersion("1.0.0.0")]
  39. [assembly: AssemblyFileVersion("1.0.0.0")]
  40. // Add some common permissions, these can be removed if not needed
  41. [assembly: UsesPermission(Android.Manifest.Permission.Internet)]
  42. [assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)]