-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththunderstore.toml
More file actions
48 lines (38 loc) · 1.75 KB
/
thunderstore.toml
File metadata and controls
48 lines (38 loc) · 1.75 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
# 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 = "ResoniteModding"
name = "BepisLocaleLoader" # Change this to your mod's name, no spaces or special characters, max 128 characters
versionNumber = "1.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)
description = "Loads locale files for Plugins"
websiteUrl = "https://github.com/ResoniteModding/BepisLocaleLoader"
containsNsfwContent = false
# List any dependencies your mod has here, in the format "namespace-modname" = "version-constraint"
[package.dependencies]
ResoniteModding-BepisLoader = "1.4.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 = "./bin/Release/BepisLocaleLoader.dll"
target = "plugins/BepisLocaleLoader/"
# Include the PDB file for better debugging support
# [[build.copy]]
# source = "./bin/Release/BepisLocaleLoader.pdb"
# target = "plugins/BepisLocaleLoader/"
# 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