Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AssemblyInfoUtilities.cs 317B

12345678910
  1. using System;
  2. using System.Reflection;
  3. namespace UnityEngine.Advertisements.Utilities {
  4. public static class AssemblyInfoUtilities {
  5. public static string GetCurrentAssemblyInfoVersion() {
  6. return System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();
  7. }
  8. }
  9. }