Quellcode durchsuchen

Change version to string type

Bepis vor 7 Jahren
Ursprung
Commit
3233779bb0
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      BepInEx/Attributes.cs

+ 2 - 2
BepInEx/Attributes.cs

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