This commit is contained in:
NotAKidoS 2023-02-17 06:10:49 -06:00
parent 8a3523539b
commit 1e636e3395
13 changed files with 732 additions and 5 deletions

View file

@ -1,11 +1,17 @@
<<<<<<< Updated upstream
using DesktopVRSwitch.Properties;
using MelonLoader;
=======
using MelonLoader;
using NAK.Melons.DesktopVRSwitch.Properties;
>>>>>>> Stashed changes
using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
<<<<<<< Updated upstream
[assembly: AssemblyTitle(nameof(DesktopVRSwitch))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(DesktopVRSwitch))]
@ -13,6 +19,15 @@ using System.Reflection;
[assembly: MelonInfo(
typeof(DesktopVRSwitch.DesktopVRSwitch),
nameof(DesktopVRSwitch),
=======
[assembly: AssemblyTitle(nameof(NAK.Melons.DesktopVRSwitch))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.DesktopVRSwitch))]
[assembly: MelonInfo(
typeof(NAK.Melons.DesktopVRSwitch.DesktopVRSwitchMod),
nameof(NAK.Melons.DesktopVRSwitch),
>>>>>>> Stashed changes
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/DesktopVRSwitch"
@ -22,9 +37,16 @@ using System.Reflection;
[assembly: MelonPlatform(MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)]
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
<<<<<<< Updated upstream
namespace DesktopVRSwitch.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "3.0.5";
=======
namespace NAK.Melons.DesktopVRSwitch.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "4.2.4";
>>>>>>> Stashed changes
public const string Author = "NotAKidoS";
}