-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththunderstore.toml
More file actions
72 lines (56 loc) · 2.74 KB
/
thunderstore.toml
File metadata and controls
72 lines (56 loc) · 2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# This file is used by the Thunderstore CLI to build and publish your mod to Thunderstore. https://github.com/thunderstore-io/thunderstore-cli
[config]
schemaVersion = "0.0.1"
[package]
namespace = "Nytra" # TODO: Change this to the team you're uploading the mod to on Thunderstore
name = "InterprocessLib" # Change this to your mod's name, no spaces or special characters, max 128 characters
versionNumber = "3.0.0" # Change this to your mod's version, must be in semantic versioning format (e.g. 1.0.0, 2.1.3, 0.1.0-alpha.1), Only read during manual usage of tcli.
description = "Library for mods to send data to the renderer and back." # TODO: Change this to your mod's description, max 250 characters
websiteUrl = "https://github.com/Nytra/ResoniteInterprocessLib" # TODO: Change this to your mod's website/repository, or leave blank
containsNsfwContent = false
# List any dependencies your mod has here, in the format "namespace-modname" = "version-constraint"
[package.dependencies]
ResoniteModding-BepisLoader = "1.5.1"
ResoniteModding-RenderiteHook = "1.1.1"
[build]
icon = "./icon.png"
readme = "./README.md"
outdir = "./build"
# Copy the compiled DLL to the plugins folder in the mod package
[[build.copy]]
source = "./out/InterprocessLib.FrooxEngine.dll"
target = "plugins/InterprocessLib.BepisLoader/"
[[build.copy]]
source = "./out/InterprocessLib.FrooxEngine.pdb"
target = "plugins/InterprocessLib.BepisLoader/"
[[build.copy]]
source = "./out/InterprocessLib.BepisLoader_Extensions.dll"
target = "plugins/InterprocessLib.BepisLoader/"
[[build.copy]]
source = "./out/InterprocessLib.BepisLoader_Extensions.pdb"
target = "plugins/InterprocessLib.BepisLoader/"
[[build.copy]]
source = "./out/InterprocessLib.Unity.dll"
target = "Renderer/BepInEx/plugins/InterprocessLib.BepInEx/"
[[build.copy]]
source = "./out/InterprocessLib.Unity.pdb"
target = "Renderer/BepInEx/plugins/InterprocessLib.BepInEx/"
[[build.copy]]
source = "./out/InterprocessLib.BepInEx_Extensions.dll"
target = "Renderer/BepInEx/plugins/InterprocessLib.BepInEx/"
[[build.copy]]
source = "./out/InterprocessLib.BepInEx_Extensions.pdb"
target = "Renderer/BepInEx/plugins/InterprocessLib.BepInEx/"
# Uncomment the following lines to include CHANGELOG file in your mod package. https://wiki.thunderstore.io/mods/updating-a-package#changelog
[[build.copy]]
source = "./CHANGELOG.md"
target = "/"
# Uncomment the following line to include LICENSE file in your mod package, if you have one.
[[build.copy]]
source = "./LICENSE"
target = "/"
[publish]
repository = "https://thunderstore.io"
communities = ["resonite"]
[publish.categories]
resonite = [ "Libraries" ] # TODO: Change this to your mod's categories, see https://thunderstore.io/api/experimental/community/resonite/category/ for a list of available categories