🪄Your Splash
This page describes how to make your own kernel splash using Visual Studio.
You're looking to create a splash for Nitrocid KS! That's great! Make sure that you have Visual Studio installed. Follow the steps to create your first splash.
Press
Create a new project
on Visual Studio homepageFind
Class Library
and double-click itWrite your splash name, like in our example,
MyFirstSplash
.Make sure that
.NET 6.0
is used. PressCreate
.Right-click on
Dependencies
->Manage NuGet Packages
, findKS
, and install it.Once the package is installed, go to the
Class1.cs
source fileIn your class, implement
ISplash
, ensuring thatKS.Misc.Splash
is imported. Then, implement all the members and properties of the interface.Once you're done implementing all the required methods and properties, remove all references to
NotImplementedException
. It should look like below:Once you're done, click on
Build Solution
.Once the solution is built, open the file explorer to the solution directory by right-clicking on the solution and selecting
Open Folder in File Explorer
.Navigate to the output directory and copy the
.dll
file toKSSplashes
under the%localappdata%/KS
folder.Open Nitrocid KS to go to
Settings
>General
>Splash name
. Ensure that your splash shows up.
Last updated