mirror of
https://github.com/muskit/H3VR-TNH-Quality-of-Life-Improvements.git
synced 2026-06-02 20:24:26 -07:00
update MeatKit (9a1a68ab68cd0650227af944ffa30d1166b9e056)
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
using System.IO;
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
|
||||
namespace MeatKit
|
||||
{
|
||||
public static class CreateUpdatePackage
|
||||
{
|
||||
private static readonly string[] ExportAssets =
|
||||
{
|
||||
"Assets/MeatKit",
|
||||
"Assets/Managed/0Harmony.dll",
|
||||
"Assets/Managed/BepInEx.dll",
|
||||
"Assets/Managed/DotNetZip.dll",
|
||||
"Assets/Managed/Mono.Cecil.dll",
|
||||
"Assets/Managed/MonoMod.RuntimeDetour.dll",
|
||||
"Assets/Managed/MonoMod.Utils.dll",
|
||||
"Assets/Managed/Sodalite.dll",
|
||||
"Assets/Managed/Valve.Newtonsoft.Json.dll",
|
||||
};
|
||||
|
||||
[MenuItem("MeatKit/Developer/Create update package")]
|
||||
public static void Create()
|
||||
{
|
||||
AssetDatabase.ExportPackage(ExportAssets, Updater.UpdatePackageName, ExportPackageOptions.Recurse);
|
||||
Debug.Log("Exported an update package to " + Path.Combine(Path.GetDirectoryName(Application.dataPath) , Updater.UpdatePackageName));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user