added all files necessary for building mod, added package script
This commit is contained in:
parent
530e7e1087
commit
872a7d49b5
7 changed files with 49 additions and 1 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -9,4 +9,6 @@ riderModule.iml
|
||||||
*.sln.DotSettings.user
|
*.sln.DotSettings.user
|
||||||
/.idea/.idea.LyneMod/.idea/indexLayout.xml
|
/.idea/.idea.LyneMod/.idea/indexLayout.xml
|
||||||
/.idea/.idea.LyneMod/.idea/misc.xml
|
/.idea/.idea.LyneMod/.idea/misc.xml
|
||||||
/.idea/.idea.LyneMod/.idea/inspectionProfiles/Project_Default.xml
|
/.idea/.idea.LyneMod/.idea/inspectionProfiles/Project_Default.xml
|
||||||
|
/build/
|
||||||
|
/LyneMod.zip
|
9
package.sh
Executable file
9
package.sh
Executable 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
BIN
res/LyneMod.dll
Normal file
Binary file not shown.
4
res/README.md
Normal file
4
res/README.md
Normal 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
BIN
res/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
33
res/manifest.json
Normal file
33
res/manifest.json
Normal 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"
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in a new issue