From 75d3028ffb7469e13335342ed52922d35219c2d6 Mon Sep 17 00:00:00 2001 From: xiaoxin <2932869213@qq.com> Date: Mon, 13 Oct 2025 18:20:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E6=96=87=E4=BB=B6=E8=87=B3?= =?UTF-8?q?=20Properties?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Properties/AssemblyInfo.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Properties/AssemblyInfo.cs diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..5e7c956 --- /dev/null +++ b/Properties/AssemblyInfo.cs @@ -0,0 +1,20 @@ +using System.Reflection; +using MelonLoader; + +[assembly: AssemblyTitle(SinmaiAssist.BuildInfo.Description)] +[assembly: AssemblyDescription(SinmaiAssist.BuildInfo.Description)] +[assembly: AssemblyCompany(SinmaiAssist.BuildInfo.Company)] +[assembly: AssemblyProduct(SinmaiAssist.BuildInfo.Name)] +[assembly: AssemblyCopyright("Created by " + SinmaiAssist.BuildInfo.Author)] +[assembly: AssemblyTrademark(SinmaiAssist.BuildInfo.Company)] +[assembly: AssemblyVersion(SinmaiAssist.BuildInfo.Version)] +[assembly: AssemblyFileVersion(SinmaiAssist.BuildInfo.Version)] +[assembly: MelonInfo(typeof(SinmaiAssist.SinmaiAssist), SinmaiAssist.BuildInfo.Name, SinmaiAssist.BuildInfo.Version, SinmaiAssist.BuildInfo.Author, SinmaiAssist.BuildInfo.DownloadLink)] +[assembly: MelonColor()] +[assembly: MelonOptionalDependencies( "ChimeLib.NET")] +[assembly: MelonPriority(Priority = -10)] + +// Create and Setup a MelonGame Attribute to mark a Melon as Universal or Compatible with specific Games. +// If no MelonGame Attribute is found or any of the Values for any MelonGame Attribute on the Melon is null or empty it will be assumed the Melon is Universal. +// Values for MelonGame Attribute can be found in the Game's app.info file or printed at the top of every log directly beneath the Unity version. +[assembly: MelonGame(null, null)] \ No newline at end of file