added all files necessary for building mod, added package script

This commit is contained in:
Lynne Megido 2021-05-26 13:36:41 +10:00
parent 530e7e1087
commit 872a7d49b5
Signed by: lynnesbian
GPG Key ID: F0A184B5213D9F90
7 changed files with 49 additions and 1 deletions

2
.gitignore vendored
View File

@ -10,3 +10,5 @@ riderModule.iml
/.idea/.idea.LyneMod/.idea/indexLayout.xml
/.idea/.idea.LyneMod/.idea/misc.xml
/.idea/.idea.LyneMod/.idea/inspectionProfiles/Project_Default.xml
/build/
/LyneMod.zip

9
package.sh Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
set -e
mkdir build || true
dotnet build -o build
mv build/LyneMod.dll res
rm -r build
rm LyneMod.zip || true
zip -rj9 LyneMod.zip res/*

BIN
res/LyneMod.dll Normal file

Binary file not shown.

4
res/README.md Normal file
View File

@ -0,0 +1,4 @@
LyneMod
===
LyneMod is a simple and silly little mod that mostly changes a bunch of text strings in the game to be more silly (and perhaps even wacky). It is a little bit powerful, I think.

BIN
res/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

33
res/manifest.json Normal file
View File

@ -0,0 +1,33 @@
{
"ManifestVersion": 2,
"AuthorName": "Lynnesbian",
"DisplayName": "LyneMod",
"Name": "Lynnesbian-LyneMod",
"Description": "A somewhat bonked mod, by a somewhat bonked Lynne...",
"Licence": "",
"GameVersion": "N/A",
"Version": "1.0.0",
"Dependencies": [
"bbepis-BepInExPack-5.4.9",
"tristanmcpherson-R2API-3.0.30"
],
"OptionalDependencies": [],
"Incompatibilities": [],
"NetworkMode": "both",
"PackageType": "mod",
"InstallMode": "managed",
"Loaders": [
"bepinex"
],
"WebsiteURL": "https://git.bune.city/lynnesbian/lynemod",
"ExtraData": {},
"name": "LyneMod",
"version_number": "1.0.0",
"website_url": "https://git.bune.city/lynnesbian/lynemod",
"description": "A somewhat bonked mod, by a somewhat bonked Lynne...",
"dependencies": [
"bbepis-BepInExPack-5.4.9",
"tristanmcpherson-R2API-3.0.30"
]
}