Firstborn/Library/PackageCache/com.unity.ads@4.4.2/Runtime/Advertisement/Utilities/AssemblyInfoUtilities.cs

11 lines
317 B
C#
Raw Normal View History

using System;
using System.Reflection;
namespace UnityEngine.Advertisements.Utilities {
public static class AssemblyInfoUtilities {
public static string GetCurrentAssemblyInfoVersion() {
return System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();
}
}
}