simplified mod, added proper BTKUILib support

This commit is contained in:
NotAKidoS 2023-01-13 18:30:22 -06:00
parent fb5c3c00b5
commit da42d3da57
6 changed files with 273 additions and 212 deletions

View file

@ -6,13 +6,13 @@ using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(DesktopVRIK))]
[assembly: AssemblyTitle(nameof(NAK.Melons.DesktopVRIK))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(DesktopVRIK))]
[assembly: AssemblyProduct(nameof(NAK.Melons.DesktopVRIK))]
[assembly: MelonInfo(
typeof(DesktopVRIK.DesktopVRIKMod),
nameof(DesktopVRIK),
typeof(NAK.Melons.DesktopVRIK.DesktopVRIKMod),
nameof(NAK.Melons.DesktopVRIK),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/DesktopVRIK"
@ -21,10 +21,11 @@ using System.Reflection;
[assembly: MelonGame("Alpha Blend Interactive", "ChilloutVR")]
[assembly: MelonPlatform(MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)]
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
[assembly: MelonOptionalDependencies("BTKUILib")]
namespace DesktopVRIK.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "1.0.4";
public const string Version = "1.0.5";
public const string Author = "NotAKidoS";
}