Lib.InGameWiki
1.1.0
See the version list below for details.
dotnet add package Lib.InGameWiki --version 1.1.0
NuGet\Install-Package Lib.InGameWiki -Version 1.1.0
<PackageReference Include="Lib.InGameWiki" Version="1.1.0" />
paket add Lib.InGameWiki --version 1.1.0
#r "nuget: Lib.InGameWiki, 1.1.0"
// Install Lib.InGameWiki as a Cake Addin #addin nuget:?package=Lib.InGameWiki&version=1.1.0 // Install Lib.InGameWiki as a Cake Tool #tool nuget:?package=Lib.InGameWiki&version=1.1.0
How to install
- Open your mod project in visual studio.
- Right click on References>Manage NuGet Packages
- Inside the package manager window, click Browse and search for 'Lib.InGameWiki'.
- Select the package (author: Epicguru) and select Install.
- Package should now be installed. Under references, click on InGameWiki and find the properties tab.
- Change Copy Local from True to False.
How to add basic auto-generated wiki
- Create a new C# file in your project called
Wiki.cs
- Put this code in the file:
using InGameWiki;
using Verse;
namespace YourModNamespace
{
[StaticConstructorOnStartup]
internal static class Wiki
{
static Wiki()
{
// Get a reference to your mod instance.
Mod myMod = MyModClass.Instance;
// Create and register a new wiki.
var wiki = ModWiki.Create(myMod);
// Change some wiki properties.
wiki.WikiTitle = "MyMod: My wiki";
}
}
}
- Edit the code to work with your mod; change namespace, get a reference to your mod class, change wiki title etc.
How to add custom pages
In your mod folder, next to the Textures, Assemblies, About folders, create a new folder called Wiki
.
Inside this folder, you can add custom pages.
Click here to see the format of custom pages.
You can also add custom content to auto-generated item pages. For example, add images and text to the page that was generated for a gun added by your mod.
Click here to see how to add content to existing auto-generated pages.
WIP documentation.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
-
.NETFramework 4.7.2
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Mod now supports translation of the mod itself and of wikis added by other mods.