diff --git a/Assembly-CSharp.xml b/Assembly-CSharp.xml index f0567ff..98854ac 100644 --- a/Assembly-CSharp.xml +++ b/Assembly-CSharp.xml @@ -3761,7 +3761,7 @@ [assembly: KSPAssembly("ModBName", 2, 6)] - where "ModBName" is the name of Mod B (Mod B's .dll?). Replace 2 and 6 with the major and minor version of + where "ModBName" is the name of Mod B without spaces. Replace 2 and 6 with the major and minor version of Mod B. Then Mod A should add the following line to the end of Properties/AssemblyInfo.cs: @@ -3787,7 +3787,7 @@ [assembly: KSPAssembly("ModBName", 2, 6)] - where "ModBName" is the name of Mod B (Mod B's .dll?). Replace 2 and 6 with the major and minor version of + where "ModBName" is the name of Mod B in its KSPAssembly. Replace 2 and 6 with the major and minor version of Mod B. Then Mod A should add the following line to the end of Properties/AssemblyInfo.cs: @@ -6122,3 +6122,5 @@ + + diff --git a/src/KSPAssembly.cs b/src/KSPAssembly.cs index 0931153..0323eba 100644 --- a/src/KSPAssembly.cs +++ b/src/KSPAssembly.cs @@ -11,7 +11,7 @@ /// [assembly: KSPAssembly("ModBName", 2, 6)] /// /// -/// where "ModBName" is the name of Mod B (Mod B's .dll?). Replace 2 and 6 with the major and minor version of +/// where "ModBName" is the name of Mod B without spaces. Replace 2 and 6 with the major and minor version of /// Mod B. /// /// Then Mod A should add the following line to the end of Properties/AssemblyInfo.cs: @@ -32,4 +32,5 @@ public class KSPAssembly : Attribute public int versionMinor; public extern KSPAssembly(string name, int versionMajor, int versionMinor); -} \ No newline at end of file + +} diff --git a/src/KSPAssemblyDependency.cs b/src/KSPAssemblyDependency.cs index 0cd9182..7b6e6fc 100644 --- a/src/KSPAssemblyDependency.cs +++ b/src/KSPAssemblyDependency.cs @@ -11,7 +11,7 @@ /// [assembly: KSPAssembly("ModBName", 2, 6)] /// /// -/// where "ModBName" is the name of Mod B (Mod B's .dll?). Replace 2 and 6 with the major and minor version of +/// where "ModBName" is the name of Mod B in its KSPAssembly. Replace 2 and 6 with the major and minor version of /// Mod B. /// /// Then Mod A should add the following line to the end of Properties/AssemblyInfo.cs: @@ -33,3 +33,4 @@ public class KSPAssemblyDependency : Attribute public extern KSPAssemblyDependency(string name, int versionMajor, int versionMinor); } +