HKBuildUtils 0.1.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package HKBuildUtils --version 0.1.2                
NuGet\Install-Package HKBuildUtils -Version 0.1.2                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="HKBuildUtils" Version="0.1.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HKBuildUtils --version 0.1.2                
#r "nuget: HKBuildUtils, 0.1.2"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install HKBuildUtils as a Cake Addin
#addin nuget:?package=HKBuildUtils&version=0.1.2

// Install HKBuildUtils as a Cake Tool
#tool nuget:?package=HKBuildUtils&version=0.1.2                

Hollow Knight Mod Build Utils

Build Nuget

A nuget package to help make the Hollow Knight Mod

Features

Merger with HKMirror

Use ILRepack to merge mods with HKMirror and eliminate unused types in HKMirror.

How to enable

Add <MergeHKMirror>true</MergeHKMirror> to PropertyGroup and reference HKMirror. The rest will take care of it for you.

Mod Resources

Using <ModResource></ModResource> instead of <EmbeddedResource></EmbeddedResource> automatically generates the type ModResources for use

Example

Add the following to the project file

<ItemGroup>
    <ModResource Include="Test1.txt"></ModResource>
    <ModResource Include="a/Test2.txt"></ModResource>
    <ModResource Include="b/c/Test3.txt"></ModResource>
</ItemGroup>

Then you can get them like this in your code

Modding.Logger.Log(ModResources.TEST1.Length);

Modding.Logger.Log(ModResources.TEST2.Length);

Modding.Logger.Log(ModResources.TEST3.Length);

You can add Default="true" to <ModResource> to use user-defined content.Like this

<ItemGroup>
    <ModResource Include="a/b/c" Default="true"></ModResource>
</ItemGroup>

You can get it through ModResources.C, just like mentioned above.

If ModResources.C is used, the file $(ModDir)/a/b/c is checked for existence first. If present, the file contents are returned, and if they are not, read from the assembly and written to the $(ModDir)/a/b/c file

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.6.1 264 5/28/2023
0.5.56 298 3/12/2023
0.5.55 258 3/12/2023
0.5.54 240 3/10/2023
0.5.53 214 3/10/2023
0.5.52 355 3/4/2023
0.5.35 260 3/4/2023
0.5.33 220 3/4/2023
0.5.4 200 3/3/2023
0.5.1 221 3/3/2023
0.5.0 229 3/2/2023
0.4.51 258 3/2/2023
0.4.46 218 3/2/2023
0.4.45 262 2/26/2023
0.4.0 239 2/25/2023
0.3.16 254 2/23/2023
0.3.4 251 2/22/2023
0.3.3 260 2/22/2023
0.3.2 292 2/22/2023
0.3.1 266 2/22/2023
0.3.0 257 2/21/2023
0.2.0 266 2/20/2023
0.1.4 315 1/28/2023
0.1.3 297 1/28/2023
0.1.2 303 1/28/2023
0.1.0 322 1/28/2023