Browse Source

Change plugin version to Version type again

Bepis 7 năm trước cách đây
mục cha
commit
255643830e
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      BepInEx/Attributes.cs

+ 2 - 2
BepInEx/Attributes.cs

@@ -20,13 +20,13 @@ namespace BepInEx
         /// <summary>
         /// The specfic version of the plugin.
         /// </summary>
-        public string Version { get; protected set; }
+        public Version Version { get; protected set; }
 
         public BepInPlugin(string GUID, string Name, string Version)
         {
             this.GUID = GUID;
             this.Name = Name;
-            this.Version = Version;
+            this.Version = new Version(Version);
         }
     }