Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Assembly-CSharp.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3761,7 +3761,7 @@
[assembly: KSPAssembly("ModBName", 2, 6)]
</code>

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:
Expand All @@ -3787,7 +3787,7 @@
[assembly: KSPAssembly("ModBName", 2, 6)]
</code>

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:
Expand Down Expand Up @@ -6122,3 +6122,5 @@
</member>
</members>
</doc>


5 changes: 3 additions & 2 deletions src/KSPAssembly.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/// [assembly: KSPAssembly("ModBName", 2, 6)]
/// </code>
///
/// 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:
Expand All @@ -32,4 +32,5 @@ public class KSPAssembly : Attribute
public int versionMinor;

public extern KSPAssembly(string name, int versionMajor, int versionMinor);
}

}
3 changes: 2 additions & 1 deletion src/KSPAssemblyDependency.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/// [assembly: KSPAssembly("ModBName", 2, 6)]
/// </code>
///
/// 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:
Expand All @@ -33,3 +33,4 @@ public class KSPAssemblyDependency : Attribute

public extern KSPAssemblyDependency(string name, int versionMajor, int versionMinor);
}